##// END OF EJS Templates
release: Merge default into stable for release preparation
marcink -
r53:92a4cc66 merge stable
parent child Browse files
Show More
1 NO CONTENT: new file 100644
@@ -0,0 +1,15 b''
1 # top level files
2 include test.ini
3 include MANIFEST.in
4 include README.rst
5 include CHANGES.rst
6 include LICENSE.txt
7
8 include vcsserver/VERSION
9
10 # all config files
11 recursive-include configs *
12
13 # skip any tests files
14 recursive-exclude tests *
15
@@ -0,0 +1,111 b''
1 ################################################################################
2 # RhodeCode VCSServer with HTTP Backend - configuration #
3 # #
4 ################################################################################
5
6 [app:main]
7 use = egg:rhodecode-vcsserver
8
9 pyramid.default_locale_name = en
10 pyramid.includes =
11
12 # default locale used by VCS systems
13 locale = en_US.UTF-8
14
15 # cache regions, please don't change
16 beaker.cache.regions = repo_object
17 beaker.cache.repo_object.type = memorylru
18 beaker.cache.repo_object.max_items = 100
19 # cache auto-expires after N seconds
20 beaker.cache.repo_object.expire = 300
21 beaker.cache.repo_object.enabled = true
22
23 [server:main]
24 ## COMMON ##
25 host = 127.0.0.1
26 port = 9900
27
28
29 ##########################
30 ## GUNICORN WSGI SERVER ##
31 ##########################
32 ## run with gunicorn --log-config <inifile.ini> --paste <inifile.ini>
33 use = egg:gunicorn#main
34 ## Sets the number of process workers. You must set `instance_id = *`
35 ## when this option is set to more than one worker, recommended
36 ## value is (2 * NUMBER_OF_CPUS + 1), eg 2CPU = 5 workers
37 ## The `instance_id = *` must be set in the [app:main] section below
38 workers = 2
39 ## process name
40 proc_name = rhodecode_vcsserver
41 ## type of worker class, one of sync, gevent
42 ## recommended for bigger setup is using of of other than sync one
43 worker_class = sync
44 ## The maximum number of simultaneous clients. Valid only for Gevent
45 #worker_connections = 10
46 ## max number of requests that worker will handle before being gracefully
47 ## restarted, could prevent memory leaks
48 max_requests = 1000
49 max_requests_jitter = 30
50 ## amount of time a worker can spend with handling a request before it
51 ## gets killed and restarted. Set to 6hrs
52 timeout = 21600
53
54
55
56
57 ################################
58 ### LOGGING CONFIGURATION ####
59 ################################
60 [loggers]
61 keys = root, vcsserver, pyro4, beaker
62
63 [handlers]
64 keys = console
65
66 [formatters]
67 keys = generic
68
69 #############
70 ## LOGGERS ##
71 #############
72 [logger_root]
73 level = NOTSET
74 handlers = console
75
76 [logger_vcsserver]
77 level = DEBUG
78 handlers =
79 qualname = vcsserver
80 propagate = 1
81
82 [logger_beaker]
83 level = DEBUG
84 handlers =
85 qualname = beaker
86 propagate = 1
87
88 [logger_pyro4]
89 level = DEBUG
90 handlers =
91 qualname = Pyro4
92 propagate = 1
93
94
95 ##############
96 ## HANDLERS ##
97 ##############
98
99 [handler_console]
100 class = StreamHandler
101 args = (sys.stderr,)
102 level = DEBUG
103 formatter = generic
104
105 ################
106 ## FORMATTERS ##
107 ################
108
109 [formatter_generic]
110 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
111 datefmt = %Y-%m-%d %H:%M:%S No newline at end of file
@@ -1,6 +1,6 b''
1 1 [bumpversion]
2 current_version = 4.2.1
2 current_version = 4.3.0
3 3 message = release: Bump version {current_version} to {new_version}
4 4
5 5 [bumpversion:file:vcsserver/VERSION]
6 6
@@ -1,16 +1,14 b''
1 1 [DEFAULT]
2 2 done = false
3 3
4 4 [task:bump_version]
5 5 done = true
6 6
7 7 [task:fixes_on_stable]
8 done = true
9 8
10 9 [task:pip2nix_generated]
11 done = true
12 10
13 11 [release]
14 state = prepared
15 version = 4.2.1
12 state = in_progress
13 version = 4.3.0
16 14
@@ -1,79 +1,1 b''
1 ################################################################################
2 # RhodeCode VCSServer - configuration #
3 # #
4 ################################################################################
5
6 [DEFAULT]
7 host = 127.0.0.1
8 port = 9900
9 locale = en_US.UTF-8
10 # number of worker threads, this should be set based on a formula threadpool=N*6
11 # where N is number of RhodeCode Enterprise workers, eg. running 2 instances
12 # 8 gunicorn workers each would be 2 * 8 * 6 = 96, threadpool_size = 96
13 threadpool_size = 96
14 timeout = 0
15
16 # cache regions, please don't change
17 beaker.cache.regions = repo_object
18 beaker.cache.repo_object.type = memorylru
19 beaker.cache.repo_object.max_items = 100
20 # cache auto-expires after N seconds
21 beaker.cache.repo_object.expire = 300
22 beaker.cache.repo_object.enabled = true
23
24
25 ################################
26 ### LOGGING CONFIGURATION ####
27 ################################
28 [loggers]
29 keys = root, vcsserver, pyro4, beaker
30
31 [handlers]
32 keys = console
33
34 [formatters]
35 keys = generic
36
37 #############
38 ## LOGGERS ##
39 #############
40 [logger_root]
41 level = NOTSET
42 handlers = console
43
44 [logger_vcsserver]
45 level = DEBUG
46 handlers =
47 qualname = vcsserver
48 propagate = 1
49
50 [logger_beaker]
51 level = DEBUG
52 handlers =
53 qualname = beaker
54 propagate = 1
55
56 [logger_pyro4]
57 level = DEBUG
58 handlers =
59 qualname = Pyro4
60 propagate = 1
61
62
63 ##############
64 ## HANDLERS ##
65 ##############
66
67 [handler_console]
68 class = StreamHandler
69 args = (sys.stderr,)
70 level = DEBUG
71 formatter = generic
72
73 ################
74 ## FORMATTERS ##
75 ################
76
77 [formatter_generic]
78 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
79 datefmt = %Y-%m-%d %H:%M:%S
1 development_http.ini No newline at end of file
@@ -1,82 +1,85 b''
1 1 ################################################################################
2 # RhodeCode VCSServer - configuration #
2 # RhodeCode VCSServer with HTTP Backend - configuration #
3 3 # #
4 4 ################################################################################
5 5
6 6 [app:main]
7 7 use = egg:rhodecode-vcsserver
8 8
9 9 pyramid.default_locale_name = en
10 10 pyramid.includes =
11 11
12 # default locale used by VCS systems
12 13 locale = en_US.UTF-8
13 14
14 15 # cache regions, please don't change
15 16 beaker.cache.regions = repo_object
16 17 beaker.cache.repo_object.type = memorylru
17 18 beaker.cache.repo_object.max_items = 100
18 19 # cache auto-expires after N seconds
19 20 beaker.cache.repo_object.expire = 300
20 21 beaker.cache.repo_object.enabled = true
21 22
22 23 [server:main]
23 use = egg:waitress#main
24 ## COMMON ##
24 25 host = 0.0.0.0
25 port = %(http_port)s
26 port = 9900
27
28 use = egg:waitress#main
26 29
27 30
28 31 ################################
29 32 ### LOGGING CONFIGURATION ####
30 33 ################################
31 34 [loggers]
32 35 keys = root, vcsserver, pyro4, beaker
33 36
34 37 [handlers]
35 38 keys = console
36 39
37 40 [formatters]
38 41 keys = generic
39 42
40 43 #############
41 44 ## LOGGERS ##
42 45 #############
43 46 [logger_root]
44 47 level = NOTSET
45 48 handlers = console
46 49
47 50 [logger_vcsserver]
48 51 level = DEBUG
49 52 handlers =
50 53 qualname = vcsserver
51 54 propagate = 1
52 55
53 56 [logger_beaker]
54 57 level = DEBUG
55 58 handlers =
56 59 qualname = beaker
57 60 propagate = 1
58 61
59 62 [logger_pyro4]
60 63 level = DEBUG
61 64 handlers =
62 65 qualname = Pyro4
63 66 propagate = 1
64 67
65 68
66 69 ##############
67 70 ## HANDLERS ##
68 71 ##############
69 72
70 73 [handler_console]
71 74 class = StreamHandler
72 75 args = (sys.stderr,)
73 76 level = DEBUG
74 77 formatter = generic
75 78
76 79 ################
77 80 ## FORMATTERS ##
78 81 ################
79 82
80 83 [formatter_generic]
81 84 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
82 85 datefmt = %Y-%m-%d %H:%M:%S
1 NO CONTENT: file copied from configs/development.ini to configs/development_pyro4.ini
@@ -1,79 +1,1 b''
1 ################################################################################
2 # RhodeCode VCSServer - configuration #
3 # #
4 ################################################################################
5
6 [DEFAULT]
7 host = 127.0.0.1
8 port = 9900
9 locale = en_US.UTF-8
10 # number of worker threads, this should be set based on a formula threadpool=N*6
11 # where N is number of RhodeCode Enterprise workers, eg. running 2 instances
12 # 8 gunicorn workers each would be 2 * 8 * 6 = 96, threadpool_size = 96
13 threadpool_size = 96
14 timeout = 0
15
16 # cache regions, please don't change
17 beaker.cache.regions = repo_object
18 beaker.cache.repo_object.type = memorylru
19 beaker.cache.repo_object.max_items = 100
20 # cache auto-expires after N seconds
21 beaker.cache.repo_object.expire = 300
22 beaker.cache.repo_object.enabled = true
23
24
25 ################################
26 ### LOGGING CONFIGURATION ####
27 ################################
28 [loggers]
29 keys = root, vcsserver, pyro4, beaker
30
31 [handlers]
32 keys = console
33
34 [formatters]
35 keys = generic
36
37 #############
38 ## LOGGERS ##
39 #############
40 [logger_root]
41 level = NOTSET
42 handlers = console
43
44 [logger_vcsserver]
45 level = DEBUG
46 handlers =
47 qualname = vcsserver
48 propagate = 1
49
50 [logger_beaker]
51 level = DEBUG
52 handlers =
53 qualname = beaker
54 propagate = 1
55
56 [logger_pyro4]
57 level = DEBUG
58 handlers =
59 qualname = Pyro4
60 propagate = 1
61
62
63 ##############
64 ## HANDLERS ##
65 ##############
66
67 [handler_console]
68 class = StreamHandler
69 args = (sys.stderr,)
70 level = DEBUG
71 formatter = generic
72
73 ################
74 ## FORMATTERS ##
75 ################
76
77 [formatter_generic]
78 format = %(asctime)s.%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
79 datefmt = %Y-%m-%d %H:%M:%S
1 production_http.ini No newline at end of file
1 NO CONTENT: file copied from configs/production.ini to configs/production_pyro4.ini
@@ -1,471 +1,471 b''
1 1 {
2 2 Beaker = super.buildPythonPackage {
3 3 name = "Beaker-1.7.0";
4 4 buildInputs = with self; [];
5 5 doCheck = false;
6 6 propagatedBuildInputs = with self; [];
7 7 src = fetchurl {
8 8 url = "https://pypi.python.org/packages/97/8e/409d2e7c009b8aa803dc9e6f239f1db7c3cdf578249087a404e7c27a505d/Beaker-1.7.0.tar.gz";
9 9 md5 = "386be3f7fe427358881eee4622b428b3";
10 10 };
11 11 meta = {
12 12 license = [ pkgs.lib.licenses.bsdOriginal ];
13 13 };
14 14 };
15 15 Jinja2 = super.buildPythonPackage {
16 16 name = "Jinja2-2.8";
17 17 buildInputs = with self; [];
18 18 doCheck = false;
19 19 propagatedBuildInputs = with self; [MarkupSafe];
20 20 src = fetchurl {
21 21 url = "https://pypi.python.org/packages/f2/2f/0b98b06a345a761bec91a079ccae392d282690c2d8272e708f4d10829e22/Jinja2-2.8.tar.gz";
22 22 md5 = "edb51693fe22c53cee5403775c71a99e";
23 23 };
24 24 meta = {
25 25 license = [ pkgs.lib.licenses.bsdOriginal ];
26 26 };
27 27 };
28 28 Mako = super.buildPythonPackage {
29 29 name = "Mako-1.0.4";
30 30 buildInputs = with self; [];
31 31 doCheck = false;
32 32 propagatedBuildInputs = with self; [MarkupSafe];
33 33 src = fetchurl {
34 34 url = "https://pypi.python.org/packages/7a/ae/925434246ee90b42e8ef57d3b30a0ab7caf9a2de3e449b876c56dcb48155/Mako-1.0.4.tar.gz";
35 35 md5 = "c5fc31a323dd4990683d2f2da02d4e20";
36 36 };
37 37 meta = {
38 38 license = [ pkgs.lib.licenses.mit ];
39 39 };
40 40 };
41 41 MarkupSafe = super.buildPythonPackage {
42 42 name = "MarkupSafe-0.23";
43 43 buildInputs = with self; [];
44 44 doCheck = false;
45 45 propagatedBuildInputs = with self; [];
46 46 src = fetchurl {
47 47 url = "https://pypi.python.org/packages/c0/41/bae1254e0396c0cc8cf1751cb7d9afc90a602353695af5952530482c963f/MarkupSafe-0.23.tar.gz";
48 48 md5 = "f5ab3deee4c37cd6a922fb81e730da6e";
49 49 };
50 50 meta = {
51 51 license = [ pkgs.lib.licenses.bsdOriginal ];
52 52 };
53 53 };
54 54 PasteDeploy = super.buildPythonPackage {
55 55 name = "PasteDeploy-1.5.2";
56 56 buildInputs = with self; [];
57 57 doCheck = false;
58 58 propagatedBuildInputs = with self; [];
59 59 src = fetchurl {
60 60 url = "https://pypi.python.org/packages/0f/90/8e20cdae206c543ea10793cbf4136eb9a8b3f417e04e40a29d72d9922cbd/PasteDeploy-1.5.2.tar.gz";
61 61 md5 = "352b7205c78c8de4987578d19431af3b";
62 62 };
63 63 meta = {
64 64 license = [ pkgs.lib.licenses.mit ];
65 65 };
66 66 };
67 67 Pyro4 = super.buildPythonPackage {
68 68 name = "Pyro4-4.41";
69 69 buildInputs = with self; [];
70 70 doCheck = false;
71 71 propagatedBuildInputs = with self; [serpent];
72 72 src = fetchurl {
73 73 url = "https://pypi.python.org/packages/56/2b/89b566b4bf3e7f8ba790db2d1223852f8cb454c52cab7693dd41f608ca2a/Pyro4-4.41.tar.gz";
74 74 md5 = "ed69e9bfafa9c06c049a87cb0c4c2b6c";
75 75 };
76 76 meta = {
77 77 license = [ pkgs.lib.licenses.mit ];
78 78 };
79 79 };
80 80 WebOb = super.buildPythonPackage {
81 81 name = "WebOb-1.3.1";
82 82 buildInputs = with self; [];
83 83 doCheck = false;
84 84 propagatedBuildInputs = with self; [];
85 85 src = fetchurl {
86 86 url = "https://pypi.python.org/packages/16/78/adfc0380b8a0d75b2d543fa7085ba98a573b1ae486d9def88d172b81b9fa/WebOb-1.3.1.tar.gz";
87 87 md5 = "20918251c5726956ba8fef22d1556177";
88 88 };
89 89 meta = {
90 90 license = [ pkgs.lib.licenses.mit ];
91 91 };
92 92 };
93 93 WebTest = super.buildPythonPackage {
94 94 name = "WebTest-1.4.3";
95 95 buildInputs = with self; [];
96 96 doCheck = false;
97 97 propagatedBuildInputs = with self; [WebOb];
98 98 src = fetchurl {
99 99 url = "https://pypi.python.org/packages/51/3d/84fd0f628df10b30c7db87895f56d0158e5411206b721ca903cb51bfd948/WebTest-1.4.3.zip";
100 100 md5 = "631ce728bed92c681a4020a36adbc353";
101 101 };
102 102 meta = {
103 103 license = [ pkgs.lib.licenses.mit ];
104 104 };
105 105 };
106 106 configobj = super.buildPythonPackage {
107 107 name = "configobj-5.0.6";
108 108 buildInputs = with self; [];
109 109 doCheck = false;
110 110 propagatedBuildInputs = with self; [six];
111 111 src = fetchurl {
112 112 url = "https://pypi.python.org/packages/64/61/079eb60459c44929e684fa7d9e2fdca403f67d64dd9dbac27296be2e0fab/configobj-5.0.6.tar.gz";
113 113 md5 = "e472a3a1c2a67bb0ec9b5d54c13a47d6";
114 114 };
115 115 meta = {
116 116 license = [ pkgs.lib.licenses.bsdOriginal ];
117 117 };
118 118 };
119 119 dulwich = super.buildPythonPackage {
120 120 name = "dulwich-0.13.0";
121 121 buildInputs = with self; [];
122 122 doCheck = false;
123 123 propagatedBuildInputs = with self; [];
124 124 src = fetchurl {
125 125 url = "https://pypi.python.org/packages/84/95/732d280eee829dacc954e8109f97b47abcadcca472c2ab013e1635eb4792/dulwich-0.13.0.tar.gz";
126 126 md5 = "6dede0626657c2bd08f48ca1221eea91";
127 127 };
128 128 meta = {
129 129 license = [ pkgs.lib.licenses.gpl2Plus ];
130 130 };
131 131 };
132 132 greenlet = super.buildPythonPackage {
133 133 name = "greenlet-0.4.7";
134 134 buildInputs = with self; [];
135 135 doCheck = false;
136 136 propagatedBuildInputs = with self; [];
137 137 src = fetchurl {
138 138 url = "https://pypi.python.org/packages/7a/9f/a1a0d9bdf3203ae1502c5a8434fe89d323599d78a106985bc327351a69d4/greenlet-0.4.7.zip";
139 139 md5 = "c2333a8ff30fa75c5d5ec0e67b461086";
140 140 };
141 141 meta = {
142 142 license = [ pkgs.lib.licenses.mit ];
143 143 };
144 144 };
145 145 gunicorn = super.buildPythonPackage {
146 146 name = "gunicorn-19.6.0";
147 147 buildInputs = with self; [];
148 148 doCheck = false;
149 149 propagatedBuildInputs = with self; [];
150 150 src = fetchurl {
151 151 url = "https://pypi.python.org/packages/84/ce/7ea5396efad1cef682bbc4068e72a0276341d9d9d0f501da609fab9fcb80/gunicorn-19.6.0.tar.gz";
152 152 md5 = "338e5e8a83ea0f0625f768dba4597530";
153 153 };
154 154 meta = {
155 155 license = [ pkgs.lib.licenses.mit ];
156 156 };
157 157 };
158 158 hgsubversion = super.buildPythonPackage {
159 159 name = "hgsubversion-1.8.6";
160 160 buildInputs = with self; [];
161 161 doCheck = false;
162 162 propagatedBuildInputs = with self; [mercurial subvertpy];
163 163 src = fetchurl {
164 164 url = "https://pypi.python.org/packages/ce/97/032e5093ad250e9908cea04395cbddb6902d587f712a79b53b2d778bdfdd/hgsubversion-1.8.6.tar.gz";
165 165 md5 = "9310cb266031cf8d0779885782a84a5b";
166 166 };
167 167 meta = {
168 168 license = [ pkgs.lib.licenses.gpl1 ];
169 169 };
170 170 };
171 171 infrae.cache = super.buildPythonPackage {
172 172 name = "infrae.cache-1.0.1";
173 173 buildInputs = with self; [];
174 174 doCheck = false;
175 175 propagatedBuildInputs = with self; [Beaker repoze.lru];
176 176 src = fetchurl {
177 177 url = "https://pypi.python.org/packages/bb/f0/e7d5e984cf6592fd2807dc7bc44a93f9d18e04e6a61f87fdfb2622422d74/infrae.cache-1.0.1.tar.gz";
178 178 md5 = "b09076a766747e6ed2a755cc62088e32";
179 179 };
180 180 meta = {
181 181 license = [ pkgs.lib.licenses.zpt21 ];
182 182 };
183 183 };
184 184 mercurial = super.buildPythonPackage {
185 name = "mercurial-3.8.3";
185 name = "mercurial-3.8.4";
186 186 buildInputs = with self; [];
187 187 doCheck = false;
188 188 propagatedBuildInputs = with self; [];
189 189 src = fetchurl {
190 url = "https://pypi.python.org/packages/56/bc/af1561195d43638d44bc3ac286c21f187430966234bee1f235711d80dfb6/mercurial-3.8.3.tar.gz";
191 md5 = "97aced7018614eeccc9621a3dea35fda";
190 url = "https://pypi.python.org/packages/bc/16/b66eef0b70ee2b4ebb8e76622fe21bbed834606dd8c1bd30d6936ebf6f45/mercurial-3.8.4.tar.gz";
191 md5 = "cec2c3db688cb87142809089c6ae13e9";
192 192 };
193 193 meta = {
194 194 license = [ pkgs.lib.licenses.gpl1 pkgs.lib.licenses.gpl2Plus ];
195 195 };
196 196 };
197 197 mock = super.buildPythonPackage {
198 198 name = "mock-1.0.1";
199 199 buildInputs = with self; [];
200 200 doCheck = false;
201 201 propagatedBuildInputs = with self; [];
202 202 src = fetchurl {
203 203 url = "https://pypi.python.org/packages/15/45/30273ee91feb60dabb8fbb2da7868520525f02cf910279b3047182feed80/mock-1.0.1.zip";
204 204 md5 = "869f08d003c289a97c1a6610faf5e913";
205 205 };
206 206 meta = {
207 207 license = [ pkgs.lib.licenses.bsdOriginal ];
208 208 };
209 209 };
210 210 msgpack-python = super.buildPythonPackage {
211 211 name = "msgpack-python-0.4.6";
212 212 buildInputs = with self; [];
213 213 doCheck = false;
214 214 propagatedBuildInputs = with self; [];
215 215 src = fetchurl {
216 216 url = "https://pypi.python.org/packages/15/ce/ff2840885789ef8035f66cd506ea05bdb228340307d5e71a7b1e3f82224c/msgpack-python-0.4.6.tar.gz";
217 217 md5 = "8b317669314cf1bc881716cccdaccb30";
218 218 };
219 219 meta = {
220 220 license = [ pkgs.lib.licenses.asl20 ];
221 221 };
222 222 };
223 223 py = super.buildPythonPackage {
224 224 name = "py-1.4.29";
225 225 buildInputs = with self; [];
226 226 doCheck = false;
227 227 propagatedBuildInputs = with self; [];
228 228 src = fetchurl {
229 229 url = "https://pypi.python.org/packages/2a/bc/a1a4a332ac10069b8e5e25136a35e08a03f01fd6ab03d819889d79a1fd65/py-1.4.29.tar.gz";
230 230 md5 = "c28e0accba523a29b35a48bb703fb96c";
231 231 };
232 232 meta = {
233 233 license = [ pkgs.lib.licenses.mit ];
234 234 };
235 235 };
236 236 pyramid = super.buildPythonPackage {
237 237 name = "pyramid-1.6.1";
238 238 buildInputs = with self; [];
239 239 doCheck = false;
240 240 propagatedBuildInputs = with self; [setuptools WebOb repoze.lru zope.interface zope.deprecation venusian translationstring PasteDeploy];
241 241 src = fetchurl {
242 242 url = "https://pypi.python.org/packages/30/b3/fcc4a2a4800cbf21989e00454b5828cf1f7fe35c63e0810b350e56d4c475/pyramid-1.6.1.tar.gz";
243 243 md5 = "b18688ff3cc33efdbb098a35b45dd122";
244 244 };
245 245 meta = {
246 246 license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
247 247 };
248 248 };
249 249 pyramid-jinja2 = super.buildPythonPackage {
250 250 name = "pyramid-jinja2-2.5";
251 251 buildInputs = with self; [];
252 252 doCheck = false;
253 253 propagatedBuildInputs = with self; [pyramid zope.deprecation Jinja2 MarkupSafe];
254 254 src = fetchurl {
255 255 url = "https://pypi.python.org/packages/a1/80/595e26ffab7deba7208676b6936b7e5a721875710f982e59899013cae1ed/pyramid_jinja2-2.5.tar.gz";
256 256 md5 = "07cb6547204ac5e6f0b22a954ccee928";
257 257 };
258 258 meta = {
259 259 license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
260 260 };
261 261 };
262 262 pyramid-mako = super.buildPythonPackage {
263 263 name = "pyramid-mako-1.0.2";
264 264 buildInputs = with self; [];
265 265 doCheck = false;
266 266 propagatedBuildInputs = with self; [pyramid Mako];
267 267 src = fetchurl {
268 268 url = "https://pypi.python.org/packages/f1/92/7e69bcf09676d286a71cb3bbb887b16595b96f9ba7adbdc239ffdd4b1eb9/pyramid_mako-1.0.2.tar.gz";
269 269 md5 = "ee25343a97eb76bd90abdc2a774eb48a";
270 270 };
271 271 meta = {
272 272 license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
273 273 };
274 274 };
275 275 pytest = super.buildPythonPackage {
276 276 name = "pytest-2.8.5";
277 277 buildInputs = with self; [];
278 278 doCheck = false;
279 279 propagatedBuildInputs = with self; [py];
280 280 src = fetchurl {
281 281 url = "https://pypi.python.org/packages/b1/3d/d7ea9b0c51e0cacded856e49859f0a13452747491e842c236bbab3714afe/pytest-2.8.5.zip";
282 282 md5 = "8493b06f700862f1294298d6c1b715a9";
283 283 };
284 284 meta = {
285 285 license = [ pkgs.lib.licenses.mit ];
286 286 };
287 287 };
288 288 repoze.lru = super.buildPythonPackage {
289 289 name = "repoze.lru-0.6";
290 290 buildInputs = with self; [];
291 291 doCheck = false;
292 292 propagatedBuildInputs = with self; [];
293 293 src = fetchurl {
294 294 url = "https://pypi.python.org/packages/6e/1e/aa15cc90217e086dc8769872c8778b409812ff036bf021b15795638939e4/repoze.lru-0.6.tar.gz";
295 295 md5 = "2c3b64b17a8e18b405f55d46173e14dd";
296 296 };
297 297 meta = {
298 298 license = [ { fullName = "Repoze Public License"; } { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
299 299 };
300 300 };
301 301 rhodecode-vcsserver = super.buildPythonPackage {
302 name = "rhodecode-vcsserver-4.2.1";
302 name = "rhodecode-vcsserver-4.3.0";
303 303 buildInputs = with self; [mock pytest WebTest];
304 304 doCheck = true;
305 305 propagatedBuildInputs = with self; [configobj dulwich hgsubversion infrae.cache mercurial msgpack-python pyramid Pyro4 simplejson subprocess32 waitress WebOb];
306 306 src = ./.;
307 307 meta = {
308 308 license = [ pkgs.lib.licenses.gpl3 { fullName = "GNU General Public License v3 or later (GPLv3+)"; } ];
309 309 };
310 310 };
311 311 serpent = super.buildPythonPackage {
312 312 name = "serpent-1.12";
313 313 buildInputs = with self; [];
314 314 doCheck = false;
315 315 propagatedBuildInputs = with self; [];
316 316 src = fetchurl {
317 317 url = "https://pypi.python.org/packages/3b/19/1e0e83b47c09edaef8398655088036e7e67386b5c48770218ebb339fbbd5/serpent-1.12.tar.gz";
318 318 md5 = "05869ac7b062828b34f8f927f0457b65";
319 319 };
320 320 meta = {
321 321 license = [ pkgs.lib.licenses.mit ];
322 322 };
323 323 };
324 324 setuptools = super.buildPythonPackage {
325 325 name = "setuptools-20.8.1";
326 326 buildInputs = with self; [];
327 327 doCheck = false;
328 328 propagatedBuildInputs = with self; [];
329 329 src = fetchurl {
330 330 url = "https://pypi.python.org/packages/c4/19/c1bdc88b53da654df43770f941079dbab4e4788c2dcb5658fb86259894c7/setuptools-20.8.1.zip";
331 331 md5 = "fe58a5cac0df20bb83942b252a4b0543";
332 332 };
333 333 meta = {
334 334 license = [ pkgs.lib.licenses.mit ];
335 335 };
336 336 };
337 337 simplejson = super.buildPythonPackage {
338 338 name = "simplejson-3.7.2";
339 339 buildInputs = with self; [];
340 340 doCheck = false;
341 341 propagatedBuildInputs = with self; [];
342 342 src = fetchurl {
343 343 url = "https://pypi.python.org/packages/6d/89/7f13f099344eea9d6722779a1f165087cb559598107844b1ac5dbd831fb1/simplejson-3.7.2.tar.gz";
344 344 md5 = "a5fc7d05d4cb38492285553def5d4b46";
345 345 };
346 346 meta = {
347 347 license = [ pkgs.lib.licenses.mit pkgs.lib.licenses.afl21 ];
348 348 };
349 349 };
350 350 six = super.buildPythonPackage {
351 351 name = "six-1.9.0";
352 352 buildInputs = with self; [];
353 353 doCheck = false;
354 354 propagatedBuildInputs = with self; [];
355 355 src = fetchurl {
356 356 url = "https://pypi.python.org/packages/16/64/1dc5e5976b17466fd7d712e59cbe9fb1e18bec153109e5ba3ed6c9102f1a/six-1.9.0.tar.gz";
357 357 md5 = "476881ef4012262dfc8adc645ee786c4";
358 358 };
359 359 meta = {
360 360 license = [ pkgs.lib.licenses.mit ];
361 361 };
362 362 };
363 363 subprocess32 = super.buildPythonPackage {
364 364 name = "subprocess32-3.2.6";
365 365 buildInputs = with self; [];
366 366 doCheck = false;
367 367 propagatedBuildInputs = with self; [];
368 368 src = fetchurl {
369 369 url = "https://pypi.python.org/packages/28/8d/33ccbff51053f59ae6c357310cac0e79246bbed1d345ecc6188b176d72c3/subprocess32-3.2.6.tar.gz";
370 370 md5 = "754c5ab9f533e764f931136974b618f1";
371 371 };
372 372 meta = {
373 373 license = [ pkgs.lib.licenses.psfl ];
374 374 };
375 375 };
376 376 subvertpy = super.buildPythonPackage {
377 377 name = "subvertpy-0.9.3";
378 378 buildInputs = with self; [];
379 379 doCheck = false;
380 380 propagatedBuildInputs = with self; [];
381 381 src = fetchurl {
382 382 url = "https://github.com/jelmer/subvertpy/archive/subvertpy-0.9.3.tar.gz";
383 383 md5 = "7b745a47128050ea5a73efcd913ec1cf";
384 384 };
385 385 meta = {
386 386 license = [ pkgs.lib.licenses.lgpl21Plus ];
387 387 };
388 388 };
389 389 translationstring = super.buildPythonPackage {
390 390 name = "translationstring-1.3";
391 391 buildInputs = with self; [];
392 392 doCheck = false;
393 393 propagatedBuildInputs = with self; [];
394 394 src = fetchurl {
395 395 url = "https://pypi.python.org/packages/5e/eb/bee578cc150b44c653b63f5ebe258b5d0d812ddac12497e5f80fcad5d0b4/translationstring-1.3.tar.gz";
396 396 md5 = "a4b62e0f3c189c783a1685b3027f7c90";
397 397 };
398 398 meta = {
399 399 license = [ { fullName = "BSD-like (http://repoze.org/license.html)"; } ];
400 400 };
401 401 };
402 402 venusian = super.buildPythonPackage {
403 403 name = "venusian-1.0";
404 404 buildInputs = with self; [];
405 405 doCheck = false;
406 406 propagatedBuildInputs = with self; [];
407 407 src = fetchurl {
408 408 url = "https://pypi.python.org/packages/86/20/1948e0dfc4930ddde3da8c33612f6a5717c0b4bc28f591a5c5cf014dd390/venusian-1.0.tar.gz";
409 409 md5 = "dccf2eafb7113759d60c86faf5538756";
410 410 };
411 411 meta = {
412 412 license = [ { fullName = "BSD-derived (http://www.repoze.org/LICENSE.txt)"; } ];
413 413 };
414 414 };
415 415 waitress = super.buildPythonPackage {
416 416 name = "waitress-0.8.9";
417 417 buildInputs = with self; [];
418 418 doCheck = false;
419 419 propagatedBuildInputs = with self; [setuptools];
420 420 src = fetchurl {
421 421 url = "https://pypi.python.org/packages/ee/65/fc9dee74a909a1187ca51e4f15ad9c4d35476e4ab5813f73421505c48053/waitress-0.8.9.tar.gz";
422 422 md5 = "da3f2e62b3676be5dd630703a68e2a04";
423 423 };
424 424 meta = {
425 425 license = [ pkgs.lib.licenses.zpt21 ];
426 426 };
427 427 };
428 428 wheel = super.buildPythonPackage {
429 429 name = "wheel-0.29.0";
430 430 buildInputs = with self; [];
431 431 doCheck = false;
432 432 propagatedBuildInputs = with self; [];
433 433 src = fetchurl {
434 434 url = "https://pypi.python.org/packages/c9/1d/bd19e691fd4cfe908c76c429fe6e4436c9e83583c4414b54f6c85471954a/wheel-0.29.0.tar.gz";
435 435 md5 = "555a67e4507cedee23a0deb9651e452f";
436 436 };
437 437 meta = {
438 438 license = [ pkgs.lib.licenses.mit ];
439 439 };
440 440 };
441 441 zope.deprecation = super.buildPythonPackage {
442 442 name = "zope.deprecation-4.1.1";
443 443 buildInputs = with self; [];
444 444 doCheck = false;
445 445 propagatedBuildInputs = with self; [setuptools];
446 446 src = fetchurl {
447 447 url = "https://pypi.python.org/packages/c5/c9/e760f131fcde817da6c186a3f4952b8f206b7eeb269bb6f0836c715c5f20/zope.deprecation-4.1.1.tar.gz";
448 448 md5 = "ce261b9384066f7e13b63525778430cb";
449 449 };
450 450 meta = {
451 451 license = [ pkgs.lib.licenses.zpt21 ];
452 452 };
453 453 };
454 454 zope.interface = super.buildPythonPackage {
455 455 name = "zope.interface-4.1.3";
456 456 buildInputs = with self; [];
457 457 doCheck = false;
458 458 propagatedBuildInputs = with self; [setuptools];
459 459 src = fetchurl {
460 460 url = "https://pypi.python.org/packages/9d/81/2509ca3c6f59080123c1a8a97125eb48414022618cec0e64eb1313727bfe/zope.interface-4.1.3.tar.gz";
461 461 md5 = "9ae3d24c0c7415deb249dd1a132f0f79";
462 462 };
463 463 meta = {
464 464 license = [ pkgs.lib.licenses.zpt21 ];
465 465 };
466 466 };
467 467
468 468 ### Test requirements
469 469
470 470
471 471 }
@@ -1,34 +1,34 b''
1 1 Beaker==1.7.0
2 2 configobj==5.0.6
3 3 dulwich==0.13.0
4 4 hgsubversion==1.8.6
5 5 infrae.cache==1.0.1
6 mercurial==3.8.3
6 mercurial==3.8.4
7 7 msgpack-python==0.4.6
8 8 py==1.4.29
9 9 pyramid==1.6.1
10 10 pyramid-jinja2==2.5
11 11 pyramid-mako==1.0.2
12 12 Pyro4==4.41
13 13 pytest==2.8.5
14 14 repoze.lru==0.6
15 15 serpent==1.12
16 16 setuptools==20.8.1
17 17 simplejson==3.7.2
18 18 subprocess32==3.2.6
19 19 # TODO: johbo: This version is not in source on PyPI currently,
20 20 # change back once this or a future version is available
21 21 https://github.com/jelmer/subvertpy/archive/subvertpy-0.9.3.tar.gz#md5=7b745a47128050ea5a73efcd913ec1cf
22 22 six==1.9.0
23 23 translationstring==1.3
24 24 waitress==0.8.9
25 25 WebOb==1.3.1
26 26 wheel==0.29.0
27 27 zope.deprecation==4.1.1
28 28 zope.interface==4.1.3
29 29 greenlet==0.4.7
30 30 gunicorn==19.6.0
31 31
32 32 # Test related requirements
33 33 mock==1.0.1
34 34 WebTest==1.4.3
@@ -1,1 +1,1 b''
1 4.2.1 No newline at end of file
1 4.3.0 No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now