##// END OF EJS Templates
packaging: dropped bower, it's now replaced by npm and webcomponents from polymer.
marcink -
r3176:4660c673 default
parent child Browse files
Show More

The requested changes are too big and content was truncated. Show full diff

@@ -1,68 +1,66 b''
1 1 syntax: glob
2 2 *.egg
3 3 *.egg-info
4 4 *.idea
5 5 *.orig
6 6 *.pyc
7 7 *.sqlite-journal
8 8 *.swp
9 9 *.tox
10 10 *.DS_Store*
11 11 rhodecode/public/js/src/components/**/*.css
12 12
13 13 syntax: regexp
14 14
15 15 #.filename
16 16 ^\.settings$
17 17 ^\.project$
18 18 ^\.pydevproject$
19 19 ^\.coverage$
20 20 ^\.cache.*$
21 21 ^\.rhodecode$
22 22
23 23 ^rcextensions
24 24 ^.dev
25 25 ^._dev
26 26 ^build/
27 ^bower_components/
28 27 ^coverage\.xml$
29 28 ^data$
30 29 ^\.eggs/
31 30 ^configs/data$
32 31 ^dev.ini$
33 32 ^acceptance_tests/dev.*\.ini$
34 33 ^dist/
35 34 ^fabfile.py
36 35 ^htmlcov
37 36 ^junit\.xml$
38 37 ^node_modules/
39 38 ^node_binaries/
40 39 ^pylint.log$
41 40 ^rcextensions/
42 41 ^result$
43 42 ^rhodecode/public/css/style.css$
44 43 ^rhodecode/public/css/style-polymer.css$
45 44 ^rhodecode/public/js/rhodecode-components.html$
45 ^rhodecode/public/js/rhodecode-components.js$
46 46 ^rhodecode/public/js/scripts.js$
47 ^rhodecode/public/js/rhodecode-components.js$
48 ^rhodecode/public/js/app-bundle.js$
49 47 ^rhodecode/public/js/src/components/root-styles.gen.html$
50 48 ^rhodecode/public/js/vendors/webcomponentsjs/
51 49 ^rhodecode\.db$
52 50 ^rhodecode\.log$
53 51 ^rhodecode_dev\.log$
54 52 ^test\.db$
55 53
56 54 # ac-tests
57 55 ^acceptance_tests/\.cache.*$
58 56 ^acceptance_tests/externals
59 57 ^acceptance_tests/ghostdriver.log$
60 58 ^acceptance_tests/local(_.+)?\.ini$
61 59
62 60 # docs
63 61 ^docs/_build$
64 62 ^docs/result$
65 63 ^docs-internal/_build$
66 64
67 65 # Cythonized things
68 66 ^rhodecode/.*\.(c|so)$
@@ -1,298 +1,284 b''
1 1 # Nix environment for the community edition
2 2 #
3 3 # This shall be as lean as possible, just producing the enterprise-ce
4 4 # derivation. For advanced tweaks to pimp up the development environment we use
5 5 # "shell.nix" so that it does not have to clutter this file.
6 6 #
7 7 # Configuration, set values in "~/.nixpkgs/config.nix".
8 8 # example
9 9 # {
10 10 # # Thoughts on how to configure the dev environment
11 11 # rc = {
12 12 # codeInternalUrl = "https://usr:token@internal-code.rhodecode.com";
13 13 # sources = {
14 14 # rhodecode-vcsserver = "/home/user/work/rhodecode-vcsserver";
15 15 # rhodecode-enterprise-ce = "/home/user/work/rhodecode-enterprise-ce";
16 16 # rhodecode-enterprise-ee = "/home/user/work/rhodecode-enterprise-ee";
17 17 # };
18 18 # };
19 19 # }
20 20
21 21 args@
22 22 { pythonPackages ? "python27Packages"
23 23 , pythonExternalOverrides ? self: super: {}
24 24 , doCheck ? false
25 25 , ...
26 26 }:
27 27 let pkgs_ = (import <nixpkgs> {}); in
28 28
29 29 let
30 30 # Use nixpkgs from args or import them. We use this indirect approach
31 31 # through args to be able to use the name `pkgs` for our customized packages.
32 32 # Otherwise we will end up with an infinite recursion.
33 33 pkgs = args.pkgs or (import <nixpkgs> {
34 34 overlays = [
35 35 (import ./pkgs/overlays.nix)
36 36 ];
37 37 inherit
38 38 (pkgs_)
39 39 system;
40 40 });
41 41
42 42 # Works with the new python-packages, still can fallback to the old
43 43 # variant.
44 44 basePythonPackagesUnfix = basePythonPackages.__unfix__ or (
45 45 self: basePythonPackages.override (a: { inherit self; }));
46 46
47 47 # Evaluates to the last segment of a file system path.
48 48 basename = path: with pkgs.lib; last (splitString "/" path);
49 49
50 50 # source code filter used as arugment to builtins.filterSource.
51 51 src-filter = path: type: with pkgs.lib;
52 52 let
53 53 ext = last (splitString "." path);
54 54 in
55 55 !builtins.elem (basename path) [
56 56 ".git" ".hg" "__pycache__" ".eggs" ".idea" ".dev"
57 "bower_components" "node_modules" "node_binaries"
57 "node_modules" "node_binaries"
58 58 "build" "data" "result" "tmp"] &&
59 59 !builtins.elem ext ["egg-info" "pyc"] &&
60 60 # TODO: johbo: This check is wrong, since "path" contains an absolute path,
61 61 # it would still be good to restore it since we want to ignore "result-*".
62 62 !hasPrefix "result" path;
63 63
64 64 sources =
65 65 let
66 66 inherit
67 67 (pkgs.lib)
68 68 all
69 69 isString
70 70 attrValues;
71 71 sourcesConfig = pkgs.config.rc.sources or {};
72 72 in
73 73 # Ensure that sources are configured as strings. Using a path
74 74 # would result in a copy into the nix store.
75 75 assert all isString (attrValues sourcesConfig);
76 76 sourcesConfig;
77 77
78 78 version = builtins.readFile "${rhodecode-enterprise-ce-src}/rhodecode/VERSION";
79 79 rhodecode-enterprise-ce-src = builtins.filterSource src-filter ./.;
80 80
81 buildBowerComponents = pkgs.buildBowerComponents;
82 81 nodeEnv = import ./pkgs/node-default.nix {
83 82 inherit
84 83 pkgs;
85 84 };
86 85 nodeDependencies = nodeEnv.shell.nodeDependencies;
87 86
88 bowerComponents = buildBowerComponents {
89 name = "enterprise-ce-${version}";
90 generated = ./pkgs/bower-packages.nix;
91 src = rhodecode-enterprise-ce-src;
92 };
93
94 87 rhodecode-testdata-src = sources.rhodecode-testdata or (
95 88 pkgs.fetchhg {
96 89 url = "https://code.rhodecode.com/upstream/rc_testdata";
97 90 rev = "v0.10.0";
98 91 sha256 = "0zn9swwvx4vgw4qn8q3ri26vvzgrxn15x6xnjrysi1bwmz01qjl0";
99 92 });
100 93
101 94 rhodecode-testdata = import "${rhodecode-testdata-src}/default.nix" {
102 95 inherit
103 96 doCheck
104 97 pkgs
105 98 pythonPackages;
106 99 };
107 100
108 101 pythonLocalOverrides = self: super: {
109 102 rhodecode-enterprise-ce =
110 103 let
111 linkNodeAndBowerPackages = ''
104 linkNodePackages = ''
112 105 export RHODECODE_CE_PATH=${rhodecode-enterprise-ce-src}
113 106
114 107 echo "[BEGIN]: Link node packages and binaries"
115 108 # johbo: Linking individual packages allows us to run "npm install"
116 109 # inside of a shell to try things out. Re-entering the shell will
117 110 # restore a clean environment.
118 111 rm -fr node_modules
119 112 mkdir node_modules
120 113 ln -s ${nodeDependencies}/lib/node_modules/* node_modules/
121 114 export NODE_PATH=./node_modules
122 115
123 116 rm -fr node_binaries
124 117 mkdir node_binaries
125 118 ln -s ${nodeDependencies}/bin/* node_binaries/
126 119 echo "[DONE ]: Link node packages and binaries"
127
128 echo "[BEGIN]: Link bower packages"
129 rm -fr bower_components
130 mkdir bower_components
131 ln -s ${bowerComponents}/bower_components/* bower_components/
132 echo "[DONE ]: Link bower packages"
133 120 '';
134 121
135 122 releaseName = "RhodeCodeEnterpriseCE-${version}";
136 123 in super.rhodecode-enterprise-ce.override (attrs: {
137 124 inherit
138 125 doCheck
139 126 version;
140 127
141 128 name = "rhodecode-enterprise-ce-${version}";
142 129 releaseName = releaseName;
143 130 src = rhodecode-enterprise-ce-src;
144 131 dontStrip = true; # prevent strip, we don't need it.
145 132
146 133 # expose following attributed outside
147 134 passthru = {
148 135 inherit
149 136 rhodecode-testdata
150 bowerComponents
151 linkNodeAndBowerPackages
137 linkNodePackages
152 138 myPythonPackagesUnfix
153 139 pythonLocalOverrides
154 140 pythonCommunityOverrides;
155 141
156 142 pythonPackages = self;
157 143 };
158 144
159 145 buildInputs =
160 146 attrs.buildInputs or [] ++ [
161 147 rhodecode-testdata
162 148 ];
163 149
164 150 #NOTE: option to inject additional propagatedBuildInputs
165 151 propagatedBuildInputs =
166 152 attrs.propagatedBuildInputs or [] ++ [
167 153
168 154 ];
169 155
170 156 LC_ALL = "en_US.UTF-8";
171 157 LOCALE_ARCHIVE =
172 158 if pkgs.stdenv.isLinux
173 159 then "${pkgs.glibcLocales}/lib/locale/locale-archive"
174 160 else "";
175 161
176 162 # Add bin directory to path so that tests can find 'rhodecode'.
177 163 preCheck = ''
178 164 export PATH="$out/bin:$PATH"
179 165 '';
180 166
181 167 # custom check phase for testing
182 168 checkPhase = ''
183 169 runHook preCheck
184 170 PYTHONHASHSEED=random py.test -vv -p no:sugar -r xw --cov-config=.coveragerc --cov=rhodecode --cov-report=term-missing rhodecode
185 171 runHook postCheck
186 172 '';
187 173
188 174 postCheck = ''
189 175 echo "Cleanup of rhodecode/tests"
190 176 rm -rf $out/lib/${self.python.libPrefix}/site-packages/rhodecode/tests
191 177 '';
192 178
193 179 preBuild = ''
194 180 echo "[BEGIN]: Building frontend assets"
195 ${linkNodeAndBowerPackages}
181 ${linkNodePackages}
196 182 make web-build
197 183 rm -fr node_modules
198 184 rm -fr node_binaries
199 185 echo "[DONE ]: Building frontend assets"
200 186 '';
201 187
202 188 postInstall = ''
203 189 # check required files
204 190 if [ ! -f rhodecode/public/js/scripts.js ]; then
205 191 echo "Missing scripts.js"
206 192 exit 1
207 193 fi
208 194 if [ ! -f rhodecode/public/css/style.css ]; then
209 195 echo "Missing style.css"
210 196 exit 1
211 197 fi
212 198
213 199 echo "Writing enterprise-ce meta information for rccontrol to nix-support/rccontrol"
214 200 mkdir -p $out/nix-support/rccontrol
215 201 cp -v rhodecode/VERSION $out/nix-support/rccontrol/version
216 202 echo "[DONE ]: enterprise-ce meta information for rccontrol written"
217 203
218 204 mkdir -p $out/etc
219 205 cp configs/production.ini $out/etc
220 206 echo "[DONE ]: saved enterprise-ce production.ini into $out/etc"
221 207
222 208 cp -r rhodecode/config/rcextensions $out/etc/rcextensions.tmpl
223 209 echo "[DONE ]: saved enterprise-ce rcextensions into $out/etc/rcextensions.tmpl"
224 210
225 211 # python based programs need to be wrapped
226 212 mkdir -p $out/bin
227 213
228 214 # required binaries from dependencies
229 215 ln -s ${self.supervisor}/bin/supervisorctl $out/bin/
230 216 ln -s ${self.supervisor}/bin/supervisord $out/bin/
231 217 ln -s ${self.pastescript}/bin/paster $out/bin/
232 218 ln -s ${self.channelstream}/bin/channelstream $out/bin/
233 219 ln -s ${self.celery}/bin/celery $out/bin/
234 220 ln -s ${self.gunicorn}/bin/gunicorn $out/bin/
235 221 ln -s ${self.pyramid}/bin/prequest $out/bin/
236 222 ln -s ${self.pyramid}/bin/pserve $out/bin/
237 223
238 224 echo "[DONE ]: created symlinks into $out/bin"
239 225 DEPS="$out/bin/supervisorctl \
240 226 $out/bin/supervisord \
241 227 $out/bin/paster \
242 228 $out/bin/channelstream \
243 229 $out/bin/celery \
244 230 $out/bin/gunicorn \
245 231 $out/bin/prequest \
246 232 $out/bin/pserve"
247 233
248 234 # wrap only dependency scripts, they require to have full PYTHONPATH set
249 235 # to be able to import all packages
250 236 for file in $DEPS;
251 237 do
252 238 wrapProgram $file \
253 239 --prefix PATH : $PATH \
254 240 --prefix PYTHONPATH : $PYTHONPATH \
255 241 --set PYTHONHASHSEED random
256 242 done
257 243
258 244 echo "[DONE ]: enterprise-ce binary wrapping"
259 245
260 246 # rhodecode-tools don't need wrapping
261 247 ln -s ${self.rhodecode-tools}/bin/rhodecode-* $out/bin/
262 248
263 249 '';
264 250 });
265 251
266 252 };
267 253
268 254 basePythonPackages = with builtins;
269 255 if isAttrs pythonPackages then
270 256 pythonPackages
271 257 else
272 258 getAttr pythonPackages pkgs;
273 259
274 260 pythonGeneratedPackages = import ./pkgs/python-packages.nix {
275 261 inherit
276 262 pkgs;
277 263 inherit
278 264 (pkgs)
279 265 fetchurl
280 266 fetchgit
281 267 fetchhg;
282 268 };
283 269
284 270 pythonCommunityOverrides = import ./pkgs/python-packages-overrides.nix {
285 271 inherit pkgs basePythonPackages;
286 272 };
287 273
288 274 # Apply all overrides and fix the final package set
289 275 myPythonPackagesUnfix = with pkgs.lib;
290 276 (extends pythonExternalOverrides
291 277 (extends pythonLocalOverrides
292 278 (extends pythonCommunityOverrides
293 279 (extends pythonGeneratedPackages
294 280 basePythonPackagesUnfix))));
295 281
296 282 myPythonPackages = (pkgs.lib.fix myPythonPackagesUnfix);
297 283
298 284 in myPythonPackages.rhodecode-enterprise-ce
@@ -1,60 +1,16 b''
1 1
2 2 =======================
3 3 Dependency management
4 4 =======================
5 5
6 6
7 7 Overview
8 8 ========
9 9
10 10 We use the Nix package manager to handle our dependencies. In general we use the
11 11 packages out of the package collection `nixpkgs`. For frequently changing
12 12 dependencies for Python and JavaScript we use the tools which are described in
13 13 this section to generate the needed Nix derivations.
14 14
15 15
16 Python dependencies
17 ===================
18
19 We use the tool `pip2nix` to generate the Nix derivations for our Python
20 dependencies.
21
22 Generating the dependencies should be done with the following command:
23
24 .. code:: shell
25
26 pip2nix generate --license
27
28
29 .. note::
30
31 License extraction support is still experimental, use the version from the
32 following pull request: https://github.com/ktosiek/pip2nix/pull/30
33
34
35
36 Node dependencies
37 =================
38
39 After adding new dependencies via ``npm install --save``, use `node2nix` to
40 update the corresponding Nix derivations:
41
42 .. code:: shell
43
44 cd pkgs
45 node2nix --input ../package.json \
46 -o node-packages.nix \
47 -e node-env.nix \
48 -c node-default.nix \
49 -d --flatten
50
51
52 Bower dependencies
53 ==================
54
55 Frontend dependencies are managed based on `bower`, with `bower2nix` a tool
56 exists which can generate the needed Nix derivations:
57
58 .. code:: shell
59
60 bower2nix bower.json pkgs/bower-packages.nix
16 Please check pkgs/README.rst file for mor information on how to build the packages.
@@ -1,176 +1,175 b''
1 1 {
2 2 "dirs": {
3 3 "css": {
4 4 "src":"rhodecode/public/css",
5 5 "dest":"rhodecode/public/css"
6 6 },
7 7 "js": {
8 8 "src": "rhodecode/public/js/src",
9 9 "src_rc": "rhodecode/public/js/rhodecode",
10 10 "dest": "rhodecode/public/js",
11 "bower": "bower_components",
12 11 "node_modules": "node_modules"
13 12 }
14 13 },
15 14 "copy": {
16 15 "main": {
17 16 "expand": true,
18 "cwd": "bower_components",
17 "cwd": "node_modules/@webcomponents",
19 18 "src": "webcomponentsjs/*.*",
20 19 "dest": "<%= dirs.js.dest %>/vendors"
21 20 }
22 21 },
23 22 "concat": {
24 23 "polymercss": {
25 24 "src": [
26 25 "<%= dirs.js.src %>/components/root-styles-prefix.html",
27 26 "<%= dirs.css.src %>/style-polymer.css",
28 27 "<%= dirs.js.src %>/components/root-styles-suffix.html"
29 28 ],
30 29 "dest": "<%= dirs.js.dest %>/src/components/root-styles.gen.html",
31 30 "nonull": true
32 31 },
33 32 "dist": {
34 33 "src": [
35 34 "<%= dirs.js.node_modules %>/jquery/dist/jquery.min.js",
36 35 "<%= dirs.js.node_modules %>/mousetrap/mousetrap.min.js",
37 36 "<%= dirs.js.node_modules %>/moment/min/moment.min.js",
38 37 "<%= dirs.js.node_modules %>/clipboard/dist/clipboard.min.js",
39 38 "<%= dirs.js.node_modules %>/favico.js/favico-0.3.10.min.js",
40 39 "<%= dirs.js.node_modules %>/sticky-sidebar/dist/sticky-sidebar.min.js",
41 40 "<%= dirs.js.node_modules %>/sticky-sidebar/dist/jquery.sticky-sidebar.min.js",
42 41 "<%= dirs.js.node_modules %>/waypoints/lib/noframework.waypoints.min.js",
43 42 "<%= dirs.js.node_modules %>/waypoints/lib/jquery.waypoints.min.js",
44 43 "<%= dirs.js.node_modules %>/appenlight-client/appenlight-client.min.js",
45 44 "<%= dirs.js.src %>/logging.js",
46 45 "<%= dirs.js.src %>/bootstrap.js",
47 46 "<%= dirs.js.src %>/i18n_utils.js",
48 47 "<%= dirs.js.src %>/deform.js",
49 48 "<%= dirs.js.src %>/ejs.js",
50 49 "<%= dirs.js.src %>/ejs_templates/utils.js",
51 50 "<%= dirs.js.src %>/plugins/jquery.pjax.js",
52 51 "<%= dirs.js.src %>/plugins/jquery.dataTables.js",
53 52 "<%= dirs.js.src %>/plugins/flavoured_checkbox.js",
54 53 "<%= dirs.js.src %>/plugins/jquery.auto-grow-input.js",
55 54 "<%= dirs.js.src %>/plugins/jquery.autocomplete.js",
56 55 "<%= dirs.js.src %>/plugins/jquery.debounce.js",
57 56 "<%= dirs.js.src %>/plugins/jquery.mark.js",
58 57 "<%= dirs.js.src %>/plugins/jquery.timeago.js",
59 58 "<%= dirs.js.src %>/plugins/jquery.timeago-extension.js",
60 59 "<%= dirs.js.src %>/select2/select2.js",
61 60 "<%= dirs.js.src %>/codemirror/codemirror.js",
62 61 "<%= dirs.js.src %>/codemirror/codemirror_loadmode.js",
63 62 "<%= dirs.js.src %>/codemirror/codemirror_hint.js",
64 63 "<%= dirs.js.src %>/codemirror/codemirror_overlay.js",
65 64 "<%= dirs.js.src %>/codemirror/codemirror_placeholder.js",
66 65 "<%= dirs.js.src %>/codemirror/codemirror_simplemode.js",
67 66 "<%= dirs.js.dest %>/mode/meta.js",
68 67 "<%= dirs.js.dest %>/mode/meta_ext.js",
69 68 "<%= dirs.js.src_rc %>/i18n/select2/translations.js",
70 69 "<%= dirs.js.src %>/rhodecode/utils/array.js",
71 70 "<%= dirs.js.src %>/rhodecode/utils/string.js",
72 71 "<%= dirs.js.src %>/rhodecode/utils/pyroutes.js",
73 72 "<%= dirs.js.src %>/rhodecode/utils/ajax.js",
74 73 "<%= dirs.js.src %>/rhodecode/utils/autocomplete.js",
75 74 "<%= dirs.js.src %>/rhodecode/utils/colorgenerator.js",
76 75 "<%= dirs.js.src %>/rhodecode/utils/ie.js",
77 76 "<%= dirs.js.src %>/rhodecode/utils/os.js",
78 77 "<%= dirs.js.src %>/rhodecode/utils/topics.js",
79 78 "<%= dirs.js.src %>/rhodecode/init.js",
80 79 "<%= dirs.js.src %>/rhodecode/changelog.js",
81 80 "<%= dirs.js.src %>/rhodecode/codemirror.js",
82 81 "<%= dirs.js.src %>/rhodecode/comments.js",
83 82 "<%= dirs.js.src %>/rhodecode/constants.js",
84 83 "<%= dirs.js.src %>/rhodecode/files.js",
85 84 "<%= dirs.js.src %>/rhodecode/followers.js",
86 85 "<%= dirs.js.src %>/rhodecode/menus.js",
87 86 "<%= dirs.js.src %>/rhodecode/notifications.js",
88 87 "<%= dirs.js.src %>/rhodecode/permissions.js",
89 88 "<%= dirs.js.src %>/rhodecode/pjax.js",
90 89 "<%= dirs.js.src %>/rhodecode/pullrequests.js",
91 90 "<%= dirs.js.src %>/rhodecode/settings.js",
92 91 "<%= dirs.js.src %>/rhodecode/select2_widgets.js",
93 92 "<%= dirs.js.src %>/rhodecode/tooltips.js",
94 93 "<%= dirs.js.src %>/rhodecode/users.js",
95 94 "<%= dirs.js.src %>/rhodecode/appenlight.js",
96 95 "<%= dirs.js.src %>/rhodecode.js",
97 96 "<%= dirs.js.dest %>/rhodecode-components.js"
98 97 ],
99 98 "dest": "<%= dirs.js.dest %>/scripts.js",
100 99 "nonull": true
101 100 }
102 101 },
103 102 "less": {
104 103 "development": {
105 104 "options": {
106 105 "compress": false,
107 106 "yuicompress": false,
108 107 "optimization": 0
109 108 },
110 109 "files": {
111 110 "<%= dirs.css.dest %>/style.css": "<%= dirs.css.src %>/main.less",
112 111 "<%= dirs.css.dest %>/style-polymer.css": "<%= dirs.css.src %>/polymer.less"
113 112 }
114 113 },
115 114 "production": {
116 115 "options": {
117 116 "compress": true,
118 117 "yuicompress": true,
119 118 "optimization": 2
120 119 },
121 120 "files": {
122 121 "<%= dirs.css.dest %>/style.css": "<%= dirs.css.src %>/main.less",
123 122 "<%= dirs.css.dest %>/style-polymer.css": "<%= dirs.css.src %>/polymer.less"
124 123 }
125 124 },
126 125 "components": {
127 126 "files": [
128 127 {
129 128 "cwd": "<%= dirs.js.src %>/components/",
130 129 "dest": "<%= dirs.js.src %>/components/",
131 130 "src": [
132 131 "**/*.less"
133 132 ],
134 133 "expand": true,
135 134 "ext": ".css"
136 135 }
137 136 ]
138 137 }
139 138 },
140 139 "watch": {
141 140 "less": {
142 141 "files": [
143 142 "<%= dirs.css.src %>/**/*.less",
144 143 "<%= dirs.js.src %>/components/**/*.less"
145 144 ],
146 145 "tasks": [
147 146 "less:development",
148 147 "less:components",
149 148 "concat:polymercss",
150 149 "webpack",
151 150 "concat:dist"
152 151 ]
153 152 },
154 153 "js": {
155 154 "files": [
156 155 "!<%= dirs.js.src %>/components/root-styles.gen.html",
157 156 "<%= dirs.js.src %>/**/*.js",
158 157 "<%= dirs.js.src %>/components/**/*.html"
159 158 ],
160 159 "tasks": [
161 160 "less:components",
162 161 "concat:polymercss",
163 162 "webpack",
164 163 "concat:dist"
165 164 ]
166 165 }
167 166 },
168 167 "jshint": {
169 168 "rhodecode": {
170 169 "src": "<%= dirs.js.src %>/rhodecode/**/*.js",
171 170 "options": {
172 171 "jshintrc": ".jshintrc"
173 172 }
174 173 }
175 174 }
176 175 }
@@ -1,59 +1,58 b''
1 1 {
2 2 "name": "rhodecode-enterprise",
3 3 "version": "2.0.0",
4 4 "private": true,
5 5 "description" : "RhodeCode JS packaged",
6 6 "license": "SEE LICENSE IN LICENSE.txt",
7 7 "repository" : {
8 8 "type" : "hg",
9 9 "url" : "https://code.rhodecode.com/rhodecode-enterprise-ce"
10 10 },
11 11 "devDependencies": {
12 12 "appenlight-client": "git+https://git@github.com/AppEnlight/appenlight-client-js.git#0.5.1",
13 "bower": "^1.8.4",
14 13 "clipboard": "^2.0.1",
15 14 "exports-loader": "^0.6.4",
16 15 "favico.js": "^0.3.10",
17 16 "grunt": "^0.4.5",
18 17 "grunt-cli": "^1.3.1",
19 18 "grunt-contrib-concat": "^0.5.1",
20 19 "grunt-contrib-copy": "^1.0.0",
21 20 "grunt-contrib-jshint": "^0.12.0",
22 21 "grunt-contrib-less": "^1.1.0",
23 22 "grunt-contrib-watch": "^0.6.1",
24 23 "grunt-webpack": "^3.1.3",
25 24 "jquery": "1.11.3",
26 25 "jshint": "^2.9.1-rc3",
27 26 "moment": "^2.18.1",
28 27 "mousetrap": "^1.6.1",
29 28 "qrious": "^4.0.2",
30 29 "sticky-sidebar": "3.3.1",
31 30 "waypoints": "4.0.1",
32 31 "webpack": "4.23.1",
33 32 "webpack-cli": "3.1.2",
34 33 "babel-core": "^6.26.3",
35 34 "babel-loader": "^7.1.2",
36 35 "babel-plugin-transform-object-rest-spread": "^6.26.0",
37 36 "babel-preset-env": "^1.6.0",
38 37 "copy-webpack-plugin": "^4.4.2",
39 38 "css-loader": "^0.28.11",
40 39 "html-loader": "^0.4.4",
41 40 "html-webpack-plugin": "^3.2.0",
42 41 "imports-loader": "^0.7.1",
43 42 "polymer-webpack-loader": "^2.0.1",
44 43 "style-loader": "^0.21.0",
45 44 "webpack-uglify-js-plugin": "^1.1.9",
46 45 "raw-loader": "1.0.0-beta.0",
47 46 "ts-loader": "^1.3.3",
48 47 "@webcomponents/webcomponentsjs": "^2.0.0",
49 48 "@polymer/polymer": "^3.0.0",
50 49 "@polymer/paper-button": "^3.0.0",
51 50 "@polymer/paper-spinner": "^3.0.0",
52 51 "@polymer/paper-tooltip": "^3.0.0",
53 52 "@polymer/paper-toast": "^3.0.0",
54 53 "@polymer/paper-toggle-button": "^3.0.0",
55 54 "@polymer/iron-ajax": "^3.0.0",
56 55 "@polymer/iron-autogrow-textarea": "^3.0.0",
57 56 "@polymer/iron-a11y-keys": "^3.0.0"
58 57 }
59 58 }
@@ -1,65 +1,57 b''
1 1
2 2 ==============================
3 3 Generate the Nix expressions
4 4 ==============================
5 5
6 6 Details can be found in the repository of `RhodeCode Enterprise CE`_ inside of
7 7 the file `docs/contributing/dependencies.rst`.
8 8
9 9 Start the environment as follows:
10 10
11 11 .. code:: shell
12 12
13 13 nix-shell pkgs/shell-generate.nix
14 14
15 15
16 16
17 17 Python dependencies
18 18 ===================
19 19
20 20 .. code:: shell
21 21
22 22 pip2nix generate --licenses
23 23 # or
24 24 nix-shell pkgs/shell-generate.nix --command "pip2nix generate --licenses"
25 25
26 26
27 27 NodeJS dependencies
28 28 ===================
29 29
30 30 Generate node-packages.nix file with all dependencies from NPM and package.json file
31 31 This should be run before entering nix-shell.
32 32
33 33 The sed at the end fixes a bug with http rewrite of re-generated packages
34 34
35 35 .. code:: shell
36 36
37 37 rm -rf node_modules &&
38 38 nix-shell pkgs/shell-generate.nix --command "
39 39 node2nix --input package.json \
40 40 -o pkgs/node-packages.nix \
41 41 -e pkgs/node-env.nix \
42 42 -c pkgs/node-default.nix \
43 43 -d --flatten --nodejs-8 " &&
44 44 sed -i -e 's/http:\/\//https:\/\//g' pkgs/node-packages.nix
45 45
46 46
47 Bower dependencies
48 ==================
49
50 .. code:: shell
51
52 nix-shell pkgs/shell-generate.nix --command "bower2nix bower.json pkgs/bower-packages.nix"
53
54
55 47 Generate license data
56 48 =====================
57 49
58 50 .. code:: shell
59 51
60 52 nix-build pkgs/license-generate.nix -o result-license && cat result-license/licenses.json | python -m json.tool > rhodecode/config/licenses.json
61 53
62 54
63 55 .. Links
64 56
65 57 .. _RhodeCode Enterprise CE: https://code.rhodecode.com/rhodecode-enterprise-ce
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
@@ -1,53 +1,50 b''
1 1 { pkgs ? (import <nixpkgs> {})
2 2 , pythonPackages ? "python27Packages"
3 3 }:
4 4
5 5 with pkgs.lib;
6 6
7 7 let _pythonPackages = pythonPackages; in
8 8 let
9 9 pythonPackages = getAttr _pythonPackages pkgs;
10 10
11 11 pip2nix = import ./nix-common/pip2nix.nix {
12 12 inherit
13 13 pkgs
14 14 pythonPackages;
15 15 };
16 16
17 17 in
18 18
19 19 pkgs.stdenv.mkDerivation {
20 20 name = "pip2nix-generated";
21 21 buildInputs = [
22 22 # Allows to generate python packages
23 23 pip2nix.pip2nix
24 24 pythonPackages.pip-tools
25 25
26 # Allows to generate bower dependencies
27 pkgs.nodePackages.bower2nix
28
29 26 # Allows to generate node dependencies
30 27 pkgs.nodePackages.node2nix
31 28
32 29 # We need mysql_config to be around
33 30 pkgs.mysql
34 31
35 32 # We need postgresql to be around
36 33 pkgs.postgresql
37 34
38 35 # Curl is needed for pycurl
39 36 pkgs.curl
40 37 ];
41 38
42 39 shellHook = ''
43 40 runHook preShellHook
44 41 runHook postShellHook
45 42 '';
46 43
47 44 preShellHook = ''
48 45 echo "Starting Generate Shell"
49 46 # Custom prompt to distinguish from other dev envs.
50 47 export PS1="\n\[\033[1;32m\][Generate-shell:\w]$\[\033[0m\] "
51 48 export PYCURL_SSL_LIBRARY=openssl
52 49 '';
53 50 }
@@ -1,1912 +1,1901 b''
1 1 [
2 2 {
3 3 "license": [
4 4 {
5 5 "fullName": "Python Software Foundation License version 2",
6 6 "shortName": "psfl",
7 7 "spdxId": "Python-2.0",
8 8 "url": "http://spdx.org/licenses/Python-2.0.html"
9 9 },
10 10 {
11 11 "fullName": "Zope Public License 2.0",
12 12 "shortName": "zpl20",
13 13 "spdxId": "ZPL-2.0",
14 14 "url": "http://spdx.org/licenses/ZPL-2.0.html"
15 15 }
16 16 ],
17 17 "name": "python2.7-setuptools-38.4.0"
18 18 },
19 19 {
20 20 "license": {
21 21 "fullName": "Python Software Foundation License version 2",
22 22 "shortName": "psfl",
23 23 "spdxId": "Python-2.0",
24 24 "url": "http://spdx.org/licenses/Python-2.0.html"
25 25 },
26 26 "name": "python-2.7.15"
27 27 },
28 28 {
29 29 "license": [
30 30 {
31 31 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
32 32 "shortName": "bsdOriginal",
33 33 "spdxId": "BSD-4-Clause",
34 34 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
35 35 }
36 36 ],
37 37 "name": "python2.7-coverage-3.7.1"
38 38 },
39 39 {
40 40 "license": [
41 41 {
42 42 "fullName": "MIT License",
43 43 "shortName": "mit",
44 44 "spdxId": "MIT",
45 45 "url": "http://spdx.org/licenses/MIT.html"
46 46 }
47 47 ],
48 48 "name": "python2.7-bootstrapped-pip-9.0.1"
49 49 },
50 50 {
51 51 "license": [
52 52 {
53 53 "fullName": "MIT License",
54 54 "shortName": "mit",
55 55 "spdxId": "MIT",
56 56 "url": "http://spdx.org/licenses/MIT.html"
57 57 }
58 58 ],
59 59 "name": "python2.7-cov-core-1.15.0"
60 60 },
61 61 {
62 62 "license": [
63 63 {
64 64 "fullName": "MIT License",
65 65 "shortName": "mit",
66 66 "spdxId": "MIT",
67 67 "url": "http://spdx.org/licenses/MIT.html"
68 68 }
69 69 ],
70 70 "name": "python2.7-webtest-2.0.29"
71 71 },
72 72 {
73 73 "license": [
74 74 {
75 75 "fullName": "MIT License",
76 76 "shortName": "mit",
77 77 "spdxId": "MIT",
78 78 "url": "http://spdx.org/licenses/MIT.html"
79 79 }
80 80 ],
81 81 "name": "python2.7-beautifulsoup4-4.6.3"
82 82 },
83 83 {
84 84 "license": [
85 85 {
86 86 "fullName": "Zope Public License 2.1",
87 87 "shortName": "zpl21",
88 88 "spdxId": "ZPL-2.1",
89 89 "url": "http://spdx.org/licenses/ZPL-2.1.html"
90 90 }
91 91 ],
92 92 "name": "python2.7-waitress-1.1.0"
93 93 },
94 94 {
95 95 "license": [
96 96 {
97 97 "fullName": "MIT License",
98 98 "shortName": "mit",
99 99 "spdxId": "MIT",
100 100 "url": "http://spdx.org/licenses/MIT.html"
101 101 }
102 102 ],
103 103 "name": "python2.7-webob-1.7.4"
104 104 },
105 105 {
106 106 "license": [
107 107 {
108 108 "fullName": "MIT License",
109 109 "shortName": "mit",
110 110 "spdxId": "MIT",
111 111 "url": "http://spdx.org/licenses/MIT.html"
112 112 }
113 113 ],
114 114 "name": "python2.7-six-1.11.0"
115 115 },
116 116 {
117 117 "license": [
118 118 {
119 119 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
120 120 "shortName": "bsdOriginal",
121 121 "spdxId": "BSD-4-Clause",
122 122 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
123 123 }
124 124 ],
125 125 "name": "python2.7-mock-1.0.1"
126 126 },
127 127 {
128 128 "license": [
129 129 {
130 130 "fullName": "MIT License",
131 131 "shortName": "mit",
132 132 "spdxId": "MIT",
133 133 "url": "http://spdx.org/licenses/MIT.html"
134 134 },
135 135 {
136 136 "fullName": "DFSG approved"
137 137 }
138 138 ],
139 139 "name": "python2.7-pytest-timeout-1.2.1"
140 140 },
141 141 {
142 142 "license": [
143 143 {
144 144 "fullName": "MIT License",
145 145 "shortName": "mit",
146 146 "spdxId": "MIT",
147 147 "url": "http://spdx.org/licenses/MIT.html"
148 148 }
149 149 ],
150 150 "name": "python2.7-pytest-3.6.0"
151 151 },
152 152 {
153 153 "license": [
154 154 {
155 155 "fullName": "ASL"
156 156 },
157 157 {
158 158 "fullName": "Apache License 2.0",
159 159 "shortName": "asl20",
160 160 "spdxId": "Apache-2.0",
161 161 "url": "http://spdx.org/licenses/Apache-2.0.html"
162 162 }
163 163 ],
164 164 "name": "python2.7-funcsigs-1.0.2"
165 165 },
166 166 {
167 167 "license": [
168 168 {
169 169 "fullName": "MIT License",
170 170 "shortName": "mit",
171 171 "spdxId": "MIT",
172 172 "url": "http://spdx.org/licenses/MIT.html"
173 173 }
174 174 ],
175 175 "name": "python2.7-pluggy-0.6.0"
176 176 },
177 177 {
178 178 "license": [
179 179 {
180 180 "fullName": "MIT License",
181 181 "shortName": "mit",
182 182 "spdxId": "MIT",
183 183 "url": "http://spdx.org/licenses/MIT.html"
184 184 }
185 185 ],
186 186 "name": "python2.7-atomicwrites-1.1.5"
187 187 },
188 188 {
189 189 "license": [
190 190 {
191 191 "fullName": "MIT License",
192 192 "shortName": "mit",
193 193 "spdxId": "MIT",
194 194 "url": "http://spdx.org/licenses/MIT.html"
195 195 }
196 196 ],
197 197 "name": "python2.7-more-itertools-4.3.0"
198 198 },
199 199 {
200 200 "license": [
201 201 {
202 202 "fullName": "MIT License",
203 203 "shortName": "mit",
204 204 "spdxId": "MIT",
205 205 "url": "http://spdx.org/licenses/MIT.html"
206 206 }
207 207 ],
208 208 "name": "python2.7-attrs-18.1.0"
209 209 },
210 210 {
211 211 "license": [
212 212 {
213 213 "fullName": "MIT License",
214 214 "shortName": "mit",
215 215 "spdxId": "MIT",
216 216 "url": "http://spdx.org/licenses/MIT.html"
217 217 }
218 218 ],
219 219 "name": "python2.7-py-1.5.3"
220 220 },
221 221 {
222 222 "license": [
223 223 {
224 224 "fullName": "GNU Lesser General Public License v3 or later (LGPLv3+)"
225 225 },
226 226 {
227 227 "fullName": "LGPL"
228 228 }
229 229 ],
230 230 "name": "python2.7-gprof2dot-2017.9.19"
231 231 },
232 232 {
233 233 "license": [
234 234 {
235 235 "fullName": "MIT License",
236 236 "shortName": "mit",
237 237 "spdxId": "MIT",
238 238 "url": "http://spdx.org/licenses/MIT.html"
239 239 }
240 240 ],
241 241 "name": "python2.7-pytest-profiling-1.3.0"
242 242 },
243 243 {
244 244 "license": [
245 245 {
246 246 "fullName": "MIT License",
247 247 "shortName": "mit",
248 248 "spdxId": "MIT",
249 249 "url": "http://spdx.org/licenses/MIT.html"
250 250 }
251 251 ],
252 252 "name": "python2.7-pytest-runner-4.2"
253 253 },
254 254 {
255 255 "license": [
256 256 {
257 257 "fullName": "MIT License",
258 258 "shortName": "mit",
259 259 "spdxId": "MIT",
260 260 "url": "http://spdx.org/licenses/MIT.html"
261 261 }
262 262 ],
263 263 "name": "python2.7-setuptools-scm-2.1.0"
264 264 },
265 265 {
266 266 "license": [
267 267 {
268 268 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
269 269 "shortName": "bsdOriginal",
270 270 "spdxId": "BSD-4-Clause",
271 271 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
272 272 }
273 273 ],
274 274 "name": "python2.7-pytest-sugar-0.9.1"
275 275 },
276 276 {
277 277 "license": [
278 278 {
279 279 "fullName": "MIT License",
280 280 "shortName": "mit",
281 281 "spdxId": "MIT",
282 282 "url": "http://spdx.org/licenses/MIT.html"
283 283 }
284 284 ],
285 285 "name": "python2.7-termcolor-1.1.0"
286 286 },
287 287 {
288 288 "license": [
289 289 {
290 290 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
291 291 "shortName": "bsdOriginal",
292 292 "spdxId": "BSD-4-Clause",
293 293 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
294 294 },
295 295 {
296 296 "fullName": "MIT License",
297 297 "shortName": "mit",
298 298 "spdxId": "MIT",
299 299 "url": "http://spdx.org/licenses/MIT.html"
300 300 }
301 301 ],
302 302 "name": "python2.7-pytest-cov-2.5.1"
303 303 },
304 304 {
305 305 "license": [
306 306 {
307 307 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
308 308 "shortName": "bsdOriginal",
309 309 "spdxId": "BSD-4-Clause",
310 310 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
311 311 }
312 312 ],
313 313 "name": "python2.7-appenlight-client-0.6.25"
314 314 },
315 315 {
316 316 "license": [
317 317 {
318 318 "fullName": "Apache License 2.0",
319 319 "shortName": "asl20",
320 320 "spdxId": "Apache-2.0",
321 321 "url": "http://spdx.org/licenses/Apache-2.0.html"
322 322 }
323 323 ],
324 324 "name": "python2.7-requests-2.9.1"
325 325 },
326 326 {
327 327 "license": [
328 328 {
329 329 "fullName": "AGPLv3 and Proprietary"
330 330 }
331 331 ],
332 332 "name": "python2.7-rhodecode-tools-0.16.0"
333 333 },
334 334 {
335 335 "license": [
336 336 {
337 337 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
338 338 "shortName": "bsdOriginal",
339 339 "spdxId": "BSD-4-Clause",
340 340 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
341 341 },
342 342 {
343 343 "fullName": "BSD 2-clause \"Simplified\" License",
344 344 "shortName": "bsd2",
345 345 "spdxId": "BSD-2-Clause",
346 346 "url": "http://spdx.org/licenses/BSD-2-Clause.html"
347 347 }
348 348 ],
349 349 "name": "python2.7-whoosh-2.7.4"
350 350 },
351 351 {
352 352 "license": [
353 353 {
354 354 "fullName": "MIT License",
355 355 "shortName": "mit",
356 356 "spdxId": "MIT",
357 357 "url": "http://spdx.org/licenses/MIT.html"
358 358 }
359 359 ],
360 360 "name": "python2.7-urllib3-1.21"
361 361 },
362 362 {
363 363 "license": [
364 364 {
365 365 "fullName": "Apache License 2.0",
366 366 "shortName": "asl20",
367 367 "spdxId": "Apache-2.0",
368 368 "url": "http://spdx.org/licenses/Apache-2.0.html"
369 369 }
370 370 ],
371 371 "name": "python2.7-elasticsearch-dsl-2.2.0"
372 372 },
373 373 {
374 374 "license": [
375 375 {
376 376 "fullName": "Apache License 2.0",
377 377 "shortName": "asl20",
378 378 "spdxId": "Apache-2.0",
379 379 "url": "http://spdx.org/licenses/Apache-2.0.html"
380 380 }
381 381 ],
382 382 "name": "python2.7-elasticsearch-2.3.0"
383 383 },
384 384 {
385 385 "license": [
386 386 {
387 387 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
388 388 "shortName": "bsdOriginal",
389 389 "spdxId": "BSD-4-Clause",
390 390 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
391 391 },
392 392 {
393 393 "fullName": "Apache License 2.0",
394 394 "shortName": "asl20",
395 395 "spdxId": "Apache-2.0",
396 396 "url": "http://spdx.org/licenses/Apache-2.0.html"
397 397 },
398 398 {
399 399 "fullName": "Dual License"
400 400 }
401 401 ],
402 402 "name": "python2.7-python-dateutil-2.7.3"
403 403 },
404 404 {
405 405 "license": [
406 406 {
407 407 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
408 408 "shortName": "bsdOriginal",
409 409 "spdxId": "BSD-4-Clause",
410 410 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
411 411 }
412 412 ],
413 413 "name": "python2.7-markupsafe-1.0"
414 414 },
415 415 {
416 416 "license": [
417 417 {
418 418 "fullName": "MIT License",
419 419 "shortName": "mit",
420 420 "spdxId": "MIT",
421 421 "url": "http://spdx.org/licenses/MIT.html"
422 422 }
423 423 ],
424 424 "name": "python2.7-mako-1.0.7"
425 425 },
426 426 {
427 427 "license": [
428 428 {
429 429 "fullName": "MIT License",
430 430 "shortName": "mit",
431 431 "spdxId": "MIT",
432 432 "url": "http://spdx.org/licenses/MIT.html"
433 433 }
434 434 ],
435 435 "name": "python2.7-future-0.14.3"
436 436 },
437 437 {
438 438 "license": [
439 439 {
440 440 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
441 441 "shortName": "bsdOriginal",
442 442 "spdxId": "BSD-4-Clause",
443 443 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
444 444 }
445 445 ],
446 446 "name": "python2.7-click-6.6"
447 447 },
448 448 {
449 449 "license": [
450 450 {
451 451 "fullName": "MIT License",
452 452 "shortName": "mit",
453 453 "spdxId": "MIT",
454 454 "url": "http://spdx.org/licenses/MIT.html"
455 455 }
456 456 ],
457 457 "name": "python2.7-bottle-0.12.13"
458 458 },
459 459 {
460 460 "license": [
461 461 {
462 462 "fullName": "MIT License",
463 463 "shortName": "mit",
464 464 "spdxId": "MIT",
465 465 "url": "http://spdx.org/licenses/MIT.html"
466 466 }
467 467 ],
468 468 "name": "python2.7-cprofilev-1.0.7"
469 469 },
470 470 {
471 471 "license": [
472 472 {
473 473 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
474 474 "shortName": "bsdOriginal",
475 475 "spdxId": "BSD-4-Clause",
476 476 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
477 477 }
478 478 ],
479 479 "name": "python2.7-ipython-5.1.0"
480 480 },
481 481 {
482 482 "license": [
483 483 {
484 484 "fullName": "GNU General Public License v3 (GPLv3)"
485 485 },
486 486 {
487 487 "fullName": "GNU General Public License v1.0 only",
488 488 "shortName": "gpl1",
489 489 "spdxId": "GPL-1.0",
490 490 "url": "http://spdx.org/licenses/GPL-1.0.html"
491 491 }
492 492 ],
493 493 "name": "python2.7-gnureadline-6.3.8"
494 494 },
495 495 {
496 496 "license": [
497 497 {
498 498 "fullName": "ISC License",
499 499 "shortName": "isc",
500 500 "spdxId": "ISC",
501 501 "url": "http://spdx.org/licenses/ISC.html"
502 502 },
503 503 {
504 504 "fullName": "ISC License (ISCL)"
505 505 }
506 506 ],
507 507 "name": "python2.7-pexpect-4.6.0"
508 508 },
509 509 {
510 510 "license": [],
511 511 "name": "python2.7-ptyprocess-0.6.0"
512 512 },
513 513 {
514 514 "license": [
515 515 {
516 516 "fullName": "MIT License",
517 517 "shortName": "mit",
518 518 "spdxId": "MIT",
519 519 "url": "http://spdx.org/licenses/MIT.html"
520 520 }
521 521 ],
522 522 "name": "python2.7-pathlib2-2.3.0"
523 523 },
524 524 {
525 525 "license": [
526 526 {
527 527 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
528 528 "shortName": "bsdOriginal",
529 529 "spdxId": "BSD-4-Clause",
530 530 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
531 531 },
532 532 {
533 533 "fullName": "New BSD License"
534 534 }
535 535 ],
536 536 "name": "python2.7-scandir-1.9.0"
537 537 },
538 538 {
539 539 "license": [
540 540 {
541 541 "fullName": "MIT License",
542 542 "shortName": "mit",
543 543 "spdxId": "MIT",
544 544 "url": "http://spdx.org/licenses/MIT.html"
545 545 }
546 546 ],
547 547 "name": "python2.7-backports.shutil-get-terminal-size-1.0.0"
548 548 },
549 549 {
550 550 "license": [
551 551 {
552 552 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
553 553 "shortName": "bsdOriginal",
554 554 "spdxId": "BSD-4-Clause",
555 555 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
556 556 }
557 557 ],
558 558 "name": "python2.7-pygments-2.2.0"
559 559 },
560 560 {
561 561 "license": [
562 562 {
563 563 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
564 564 "shortName": "bsdOriginal",
565 565 "spdxId": "BSD-4-Clause",
566 566 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
567 567 }
568 568 ],
569 569 "name": "python2.7-prompt-toolkit-1.0.15"
570 570 },
571 571 {
572 572 "license": [
573 573 {
574 574 "fullName": "MIT License",
575 575 "shortName": "mit",
576 576 "spdxId": "MIT",
577 577 "url": "http://spdx.org/licenses/MIT.html"
578 578 }
579 579 ],
580 580 "name": "python2.7-wcwidth-0.1.7"
581 581 },
582 582 {
583 583 "license": [
584 584 {
585 585 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
586 586 "shortName": "bsdOriginal",
587 587 "spdxId": "BSD-4-Clause",
588 588 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
589 589 }
590 590 ],
591 591 "name": "python2.7-traitlets-4.3.2"
592 592 },
593 593 {
594 594 "license": [
595 595 {
596 596 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
597 597 "shortName": "bsdOriginal",
598 598 "spdxId": "BSD-4-Clause",
599 599 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
600 600 }
601 601 ],
602 602 "name": "python2.7-enum34-1.1.6"
603 603 },
604 604 {
605 605 "license": [
606 606 {
607 607 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
608 608 "shortName": "bsdOriginal",
609 609 "spdxId": "BSD-4-Clause",
610 610 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
611 611 },
612 612 {
613 613 "fullName": "new BSD License"
614 614 }
615 615 ],
616 616 "name": "python2.7-decorator-4.1.2"
617 617 },
618 618 {
619 619 "license": [
620 620 {
621 621 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
622 622 "shortName": "bsdOriginal",
623 623 "spdxId": "BSD-4-Clause",
624 624 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
625 625 }
626 626 ],
627 627 "name": "python2.7-ipython-genutils-0.2.0"
628 628 },
629 629 {
630 630 "license": [
631 631 {
632 632 "fullName": "Zope Public License 2.1",
633 633 "shortName": "zpl21",
634 634 "spdxId": "ZPL-2.1",
635 635 "url": "http://spdx.org/licenses/ZPL-2.1.html"
636 636 }
637 637 ],
638 638 "name": "python2.7-simplegeneric-0.8.1"
639 639 },
640 640 {
641 641 "license": [
642 642 {
643 643 "fullName": "MIT License",
644 644 "shortName": "mit",
645 645 "spdxId": "MIT",
646 646 "url": "http://spdx.org/licenses/MIT.html"
647 647 }
648 648 ],
649 649 "name": "python2.7-pickleshare-0.7.4"
650 650 },
651 651 {
652 652 "license": [
653 653 {
654 654 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
655 655 "shortName": "bsdOriginal",
656 656 "spdxId": "BSD-4-Clause",
657 657 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
658 658 }
659 659 ],
660 660 "name": "python2.7-ipdb-0.11"
661 661 },
662 662 {
663 663 "license": [
664 664 {
665 665 "fullName": "MIT License",
666 666 "shortName": "mit",
667 667 "spdxId": "MIT",
668 668 "url": "http://spdx.org/licenses/MIT.html"
669 669 }
670 670 ],
671 671 "name": "python2.7-gunicorn-19.9.0"
672 672 },
673 673 {
674 674 "license": [
675 675 {
676 676 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
677 677 "shortName": "bsdOriginal",
678 678 "spdxId": "BSD-4-Clause",
679 679 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
680 680 }
681 681 ],
682 682 "name": "python2.7-futures-3.0.2"
683 683 },
684 684 {
685 685 "license": [
686 686 {
687 687 "fullName": "MIT License",
688 688 "shortName": "mit",
689 689 "spdxId": "MIT",
690 690 "url": "http://spdx.org/licenses/MIT.html"
691 691 }
692 692 ],
693 693 "name": "python2.7-greenlet-0.4.13"
694 694 },
695 695 {
696 696 "license": [
697 697 {
698 698 "fullName": "MIT License",
699 699 "shortName": "mit",
700 700 "spdxId": "MIT",
701 701 "url": "http://spdx.org/licenses/MIT.html"
702 702 }
703 703 ],
704 704 "name": "python2.7-gevent-1.3.5"
705 705 },
706 706 {
707 707 "license": [
708 708 {
709 709 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
710 710 "shortName": "bsdOriginal",
711 711 "spdxId": "BSD-4-Clause",
712 712 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
713 713 }
714 714 ],
715 715 "name": "python2.7-psutil-5.4.6"
716 716 },
717 717 {
718 718 "license": [
719 719 {
720 720 "fullName": "MIT License",
721 721 "shortName": "mit",
722 722 "spdxId": "MIT",
723 723 "url": "http://spdx.org/licenses/MIT.html"
724 724 }
725 725 ],
726 726 "name": "python2.7-bumpversion-0.5.3"
727 727 },
728 728 {
729 729 "license": [
730 730 {
731 731 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
732 732 "shortName": "bsdOriginal",
733 733 "spdxId": "BSD-4-Clause",
734 734 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
735 735 }
736 736 ],
737 737 "name": "python2.7-invoke-0.13.0"
738 738 },
739 739 {
740 740 "license": [
741 741 {
742 742 "fullName": "MIT License",
743 743 "shortName": "mit",
744 744 "spdxId": "MIT",
745 745 "url": "http://spdx.org/licenses/MIT.html"
746 746 }
747 747 ],
748 748 "name": "python2.7-alembic-0.9.9"
749 749 },
750 750 {
751 751 "license": {
752 752 "fullName": "Apache License 2.0",
753 753 "shortName": "asl20",
754 754 "spdxId": "Apache-2.0",
755 755 "url": "http://spdx.org/licenses/Apache-2.0.html"
756 756 },
757 757 "name": "python2.7-python-editor-1.0.3"
758 758 },
759 759 {
760 760 "license": [
761 761 {
762 762 "fullName": "MIT License",
763 763 "shortName": "mit",
764 764 "spdxId": "MIT",
765 765 "url": "http://spdx.org/licenses/MIT.html"
766 766 }
767 767 ],
768 768 "name": "python2.7-sqlalchemy-1.1.18"
769 769 },
770 770 {
771 771 "license": [
772 772 {
773 773 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
774 774 "shortName": "bsdOriginal",
775 775 "spdxId": "BSD-4-Clause",
776 776 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
777 777 }
778 778 ],
779 779 "name": "python2.7-jupyter-client-5.0.0"
780 780 },
781 781 {
782 782 "license": [
783 783 {
784 784 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
785 785 "shortName": "bsdOriginal",
786 786 "spdxId": "BSD-4-Clause",
787 787 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
788 788 },
789 789 {
790 790 "fullName": "LGPL+BSD"
791 791 },
792 792 {
793 793 "fullName": "GNU Library or Lesser General Public License (LGPL)"
794 794 }
795 795 ],
796 796 "name": "python2.7-pyzmq-14.6.0"
797 797 },
798 798 {
799 799 "license": [
800 800 {
801 801 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
802 802 "shortName": "bsdOriginal",
803 803 "spdxId": "BSD-4-Clause",
804 804 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
805 805 }
806 806 ],
807 807 "name": "python2.7-jupyter-core-4.4.0"
808 808 },
809 809 {
810 810 "license": [
811 811 {
812 812 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
813 813 "shortName": "bsdOriginal",
814 814 "spdxId": "BSD-4-Clause",
815 815 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
816 816 }
817 817 ],
818 818 "name": "python2.7-nbformat-4.4.0"
819 819 },
820 820 {
821 821 "license": [
822 822 {
823 823 "fullName": "MIT License",
824 824 "shortName": "mit",
825 825 "spdxId": "MIT",
826 826 "url": "http://spdx.org/licenses/MIT.html"
827 827 }
828 828 ],
829 829 "name": "python2.7-jsonschema-2.6.0"
830 830 },
831 831 {
832 832 "license": [
833 833 {
834 834 "fullName": "Python Software Foundation License version 2",
835 835 "shortName": "psfl",
836 836 "spdxId": "Python-2.0",
837 837 "url": "http://spdx.org/licenses/Python-2.0.html"
838 838 }
839 839 ],
840 840 "name": "python2.7-functools32-3.2.3.post2"
841 841 },
842 842 {
843 843 "license": [
844 844 {
845 845 "fullName": "Apache License 2.0",
846 846 "shortName": "asl20",
847 847 "spdxId": "Apache-2.0",
848 848 "url": "http://spdx.org/licenses/Apache-2.0.html"
849 849 }
850 850 ],
851 851 "name": "python2.7-bleach-2.1.4"
852 852 },
853 853 {
854 854 "license": [
855 855 {
856 856 "fullName": "MIT License",
857 857 "shortName": "mit",
858 858 "spdxId": "MIT",
859 859 "url": "http://spdx.org/licenses/MIT.html"
860 860 }
861 861 ],
862 862 "name": "python2.7-html5lib-1.0.1"
863 863 },
864 864 {
865 865 "license": [
866 866 {
867 867 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
868 868 "shortName": "bsdOriginal",
869 869 "spdxId": "BSD-4-Clause",
870 870 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
871 871 }
872 872 ],
873 873 "name": "python2.7-webencodings-0.5.1"
874 874 },
875 875 {
876 876 "license": [
877 877 {
878 878 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
879 879 "shortName": "bsdOriginal",
880 880 "spdxId": "BSD-4-Clause",
881 881 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
882 882 }
883 883 ],
884 884 "name": "python2.7-nbconvert-5.3.1"
885 885 },
886 886 {
887 887 "license": [
888 888 {
889 889 "fullName": "MIT License",
890 890 "shortName": "mit",
891 891 "spdxId": "MIT",
892 892 "url": "http://spdx.org/licenses/MIT.html"
893 893 }
894 894 ],
895 895 "name": "python2.7-testpath-0.3.1"
896 896 },
897 897 {
898 898 "license": [
899 899 {
900 900 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
901 901 "shortName": "bsdOriginal",
902 902 "spdxId": "BSD-4-Clause",
903 903 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
904 904 }
905 905 ],
906 906 "name": "python2.7-pandocfilters-1.4.2"
907 907 },
908 908 {
909 909 "license": [
910 910 {
911 911 "fullName": "MIT License",
912 912 "shortName": "mit",
913 913 "spdxId": "MIT",
914 914 "url": "http://spdx.org/licenses/MIT.html"
915 915 }
916 916 ],
917 917 "name": "python2.7-entrypoints-0.2.2"
918 918 },
919 919 {
920 920 "license": [
921 921 {
922 922 "fullName": "MIT License",
923 923 "shortName": "mit",
924 924 "spdxId": "MIT",
925 925 "url": "http://spdx.org/licenses/MIT.html"
926 926 }
927 927 ],
928 928 "name": "python2.7-configparser-3.5.0"
929 929 },
930 930 {
931 931 "license": [
932 932 {
933 933 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
934 934 "shortName": "bsdOriginal",
935 935 "spdxId": "BSD-4-Clause",
936 936 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
937 937 }
938 938 ],
939 939 "name": "python2.7-jinja2-2.9.6"
940 940 },
941 941 {
942 942 "license": [
943 943 {
944 944 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
945 945 "shortName": "bsdOriginal",
946 946 "spdxId": "BSD-4-Clause",
947 947 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
948 948 }
949 949 ],
950 950 "name": "python2.7-mistune-0.8.3"
951 951 },
952 952 {
953 953 "license": [
954 954 {
955 955 "fullName": "Zope Public License 2.1",
956 956 "shortName": "zpl21",
957 957 "spdxId": "ZPL-2.1",
958 958 "url": "http://spdx.org/licenses/ZPL-2.1.html"
959 959 }
960 960 ],
961 961 "name": "python2.7-zope.interface-4.5.0"
962 962 },
963 963 {
964 964 "license": [
965 965 {
966 966 "fullName": "Zope Public License 2.1",
967 967 "shortName": "zpl21",
968 968 "spdxId": "ZPL-2.1",
969 969 "url": "http://spdx.org/licenses/ZPL-2.1.html"
970 970 }
971 971 ],
972 972 "name": "python2.7-zope.event-4.3.0"
973 973 },
974 974 {
975 975 "license": [
976 976 {
977 977 "fullName": "Zope Public License 2.1",
978 978 "shortName": "zpl21",
979 979 "spdxId": "ZPL-2.1",
980 980 "url": "http://spdx.org/licenses/ZPL-2.1.html"
981 981 }
982 982 ],
983 983 "name": "python2.7-zope.deprecation-4.3.0"
984 984 },
985 985 {
986 986 "license": [
987 987 {
988 988 "fullName": "Zope Public License 2.1",
989 989 "shortName": "zpl21",
990 990 "spdxId": "ZPL-2.1",
991 991 "url": "http://spdx.org/licenses/ZPL-2.1.html"
992 992 }
993 993 ],
994 994 "name": "python2.7-zope.cachedescriptors-4.3.1"
995 995 },
996 996 {
997 997 "license": [
998 998 {
999 999 "fullName": "PSF or ZPL"
1000 1000 }
1001 1001 ],
1002 1002 "name": "python2.7-wsgiref-0.1.2"
1003 1003 },
1004 1004 {
1005 1005 "license": [
1006 1006 {
1007 1007 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1008 1008 "shortName": "bsdOriginal",
1009 1009 "spdxId": "BSD-4-Clause",
1010 1010 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1011 1011 }
1012 1012 ],
1013 1013 "name": "python2.7-webhelpers-1.3"
1014 1014 },
1015 1015 {
1016 1016 "license": [
1017 1017 {
1018 1018 "fullName": "MIT License",
1019 1019 "shortName": "mit",
1020 1020 "spdxId": "MIT",
1021 1021 "url": "http://spdx.org/licenses/MIT.html"
1022 1022 }
1023 1023 ],
1024 1024 "name": "python2.7-webhelpers2-2.0"
1025 1025 },
1026 1026 {
1027 1027 "license": [
1028 1028 {
1029 1029 "fullName": "MIT License",
1030 1030 "shortName": "mit",
1031 1031 "spdxId": "MIT",
1032 1032 "url": "http://spdx.org/licenses/MIT.html"
1033 1033 }
1034 1034 ],
1035 1035 "name": "python2.7-weberror-0.10.3"
1036 1036 },
1037 1037 {
1038 1038 "license": [
1039 1039 {
1040 1040 "fullName": "MIT License",
1041 1041 "shortName": "mit",
1042 1042 "spdxId": "MIT",
1043 1043 "url": "http://spdx.org/licenses/MIT.html"
1044 1044 }
1045 1045 ],
1046 1046 "name": "python2.7-paste-2.0.3"
1047 1047 },
1048 1048 {
1049 1049 "license": [
1050 1050 {
1051 1051 "fullName": "MIT License",
1052 1052 "shortName": "mit",
1053 1053 "spdxId": "MIT",
1054 1054 "url": "http://spdx.org/licenses/MIT.html"
1055 1055 }
1056 1056 ],
1057 1057 "name": "python2.7-tempita-0.5.2"
1058 1058 },
1059 1059 {
1060 1060 "license": {
1061 1061 "fullName": "Repoze License",
1062 1062 "url": "http://www.repoze.org/LICENSE.txt"
1063 1063 },
1064 1064 "name": "python2.7-venusian-1.1.0"
1065 1065 },
1066 1066 {
1067 1067 "license": {
1068 1068 "fullName": "The Unlicense",
1069 1069 "spdxId": "Unlicense",
1070 1070 "url": "http://unlicense.org/"
1071 1071 },
1072 1072 "name": "python2.7-urlobject-2.4.3"
1073 1073 },
1074 1074 {
1075 1075 "license": [
1076 1076 {
1077 1077 "fullName": "Apache License 2.0",
1078 1078 "shortName": "asl20",
1079 1079 "spdxId": "Apache-2.0",
1080 1080 "url": "http://spdx.org/licenses/Apache-2.0.html"
1081 1081 }
1082 1082 ],
1083 1083 "name": "python2.7-trollius-1.0.4"
1084 1084 },
1085 1085 {
1086 1086 "license": {
1087 1087 "fullName": "Repoze License",
1088 1088 "url": "http://www.repoze.org/LICENSE.txt"
1089 1089 },
1090 1090 "name": "python2.7-translationstring-1.3"
1091 1091 },
1092 1092 {
1093 1093 "license": [
1094 1094 {
1095 1095 "fullName": "BSD-derived (http://www.repoze.org/LICENSE.txt)"
1096 1096 }
1097 1097 ],
1098 1098 "name": "python2.7-supervisor-3.3.4"
1099 1099 },
1100 1100 {
1101 1101 "license": [
1102 1102 {
1103 1103 "fullName": "BSD-derived (http://www.repoze.org/LICENSE.txt)"
1104 1104 }
1105 1105 ],
1106 1106 "name": "python2.7-meld3-1.0.2"
1107 1107 },
1108 1108 {
1109 1109 "license": [
1110 1110 {
1111 1111 "fullName": "Python Software Foundation License version 2",
1112 1112 "shortName": "psfl",
1113 1113 "spdxId": "Python-2.0",
1114 1114 "url": "http://spdx.org/licenses/Python-2.0.html"
1115 1115 }
1116 1116 ],
1117 1117 "name": "python2.7-subprocess32-3.5.1"
1118 1118 },
1119 1119 {
1120 1120 "license": [
1121 1121 {
1122 1122 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1123 1123 "shortName": "bsdOriginal",
1124 1124 "spdxId": "BSD-4-Clause",
1125 1125 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1126 1126 }
1127 1127 ],
1128 1128 "name": "python2.7-sshpubkeys-2.2.0"
1129 1129 },
1130 1130 {
1131 1131 "license": [
1132 1132 {
1133 1133 "fullName": "MIT License",
1134 1134 "shortName": "mit",
1135 1135 "spdxId": "MIT",
1136 1136 "url": "http://spdx.org/licenses/MIT.html"
1137 1137 }
1138 1138 ],
1139 1139 "name": "python2.7-ecdsa-0.13"
1140 1140 },
1141 1141 {
1142 1142 "license": [
1143 1143 {
1144 1144 "fullName": "Public Domain",
1145 1145 "shortName": "publicDomain"
1146 1146 }
1147 1147 ],
1148 1148 "name": "python2.7-pycrypto-2.6.1"
1149 1149 },
1150 1150 {
1151 1151 "license": [
1152 1152 {
1153 1153 "fullName": "Academic Free License (AFL)"
1154 1154 },
1155 1155 {
1156 1156 "fullName": "MIT License",
1157 1157 "shortName": "mit",
1158 1158 "spdxId": "MIT",
1159 1159 "url": "http://spdx.org/licenses/MIT.html"
1160 1160 }
1161 1161 ],
1162 1162 "name": "python2.7-simplejson-3.11.1"
1163 1163 },
1164 1164 {
1165 1165 "license": [
1166 1166 {
1167 1167 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1168 1168 "shortName": "bsdOriginal",
1169 1169 "spdxId": "BSD-4-Clause",
1170 1170 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1171 1171 }
1172 1172 ],
1173 1173 "name": "python2.7-setproctitle-1.1.10"
1174 1174 },
1175 1175 {
1176 1176 "license": [
1177 1177 {
1178 1178 "fullName": "MIT License",
1179 1179 "shortName": "mit",
1180 1180 "spdxId": "MIT",
1181 1181 "url": "http://spdx.org/licenses/MIT.html"
1182 1182 }
1183 1183 ],
1184 1184 "name": "python2.7-routes-2.4.1"
1185 1185 },
1186 1186 {
1187 1187 "license": {
1188 1188 "fullName": "Repoze License",
1189 1189 "url": "http://www.repoze.org/LICENSE.txt"
1190 1190 },
1191 1191 "name": "python2.7-repoze.lru-0.7"
1192 1192 },
1193 1193 {
1194 1194 "license": [
1195 1195 {
1196 1196 "fullName": "MIT License",
1197 1197 "shortName": "mit",
1198 1198 "spdxId": "MIT",
1199 1199 "url": "http://spdx.org/licenses/MIT.html"
1200 1200 }
1201 1201 ],
1202 1202 "name": "python2.7-redis-2.10.6"
1203 1203 },
1204 1204 {
1205 1205 "license": [
1206 1206 {
1207 1207 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1208 1208 "shortName": "bsdOriginal",
1209 1209 "spdxId": "BSD-4-Clause",
1210 1210 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1211 1211 }
1212 1212 ],
1213 1213 "name": "python2.7-py-gfm-0.1.3"
1214 1214 },
1215 1215 {
1216 1216 "license": [
1217 1217 {
1218 1218 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1219 1219 "shortName": "bsdOriginal",
1220 1220 "spdxId": "BSD-4-Clause",
1221 1221 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1222 1222 }
1223 1223 ],
1224 1224 "name": "python2.7-markdown-2.6.11"
1225 1225 },
1226 1226 {
1227 1227 "license": [
1228 1228 {
1229 1229 "fullName": "MIT License",
1230 1230 "shortName": "mit",
1231 1231 "spdxId": "MIT",
1232 1232 "url": "http://spdx.org/licenses/MIT.html"
1233 1233 }
1234 1234 ],
1235 1235 "name": "python2.7-tzlocal-1.5.1"
1236 1236 },
1237 1237 {
1238 1238 "license": [
1239 1239 {
1240 1240 "fullName": "MIT License",
1241 1241 "shortName": "mit",
1242 1242 "spdxId": "MIT",
1243 1243 "url": "http://spdx.org/licenses/MIT.html"
1244 1244 }
1245 1245 ],
1246 1246 "name": "python2.7-pytz-2018.4"
1247 1247 },
1248 1248 {
1249 1249 "license": [
1250 1250 {
1251 1251 "fullName": "License :: OSI Approved :: MIT License"
1252 1252 },
1253 1253 {
1254 1254 "fullName": "MIT License",
1255 1255 "shortName": "mit",
1256 1256 "spdxId": "MIT",
1257 1257 "url": "http://spdx.org/licenses/MIT.html"
1258 1258 }
1259 1259 ],
1260 1260 "name": "python2.7-python-pam-1.8.4"
1261 1261 },
1262 1262 {
1263 1263 "license": [
1264 1264 {
1265 1265 "fullName": "GNU General Public License v1.0 only",
1266 1266 "shortName": "gpl1",
1267 1267 "spdxId": "GPL-1.0",
1268 1268 "url": "http://spdx.org/licenses/GPL-1.0.html"
1269 1269 }
1270 1270 ],
1271 1271 "name": "linux-pam-1.3.0"
1272 1272 },
1273 1273 {
1274 1274 "license": [
1275 1275 {
1276 1276 "fullName": "Python Software Foundation License version 2",
1277 1277 "shortName": "psfl",
1278 1278 "spdxId": "Python-2.0",
1279 1279 "url": "http://spdx.org/licenses/Python-2.0.html"
1280 1280 }
1281 1281 ],
1282 1282 "name": "python2.7-python-memcached-1.59"
1283 1283 },
1284 1284 {
1285 1285 "license": [
1286 1286 {
1287 1287 "fullName": "Python Software Foundation License version 2",
1288 1288 "shortName": "psfl",
1289 1289 "spdxId": "Python-2.0",
1290 1290 "url": "http://spdx.org/licenses/Python-2.0.html"
1291 1291 }
1292 1292 ],
1293 1293 "name": "python2.7-python-ldap-3.1.0"
1294 1294 },
1295 1295 {
1296 1296 "license": {
1297 1297 "fullName": "MIT License",
1298 1298 "shortName": "mit",
1299 1299 "spdxId": "MIT",
1300 1300 "url": "http://spdx.org/licenses/MIT.html"
1301 1301 },
1302 1302 "name": "libkrb5-1.15.2"
1303 1303 },
1304 1304 {
1305 1305 "license":{
1306 1306 "fullName": "BSD-derived (https://www.openldap.org/software/release/license.html)"
1307 1307 },
1308 1308 "name": "openldap-2.4.45"
1309 1309 },
1310 1310 {
1311 1311 "license": [
1312 1312 {
1313 1313 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1314 1314 "shortName": "bsdOriginal",
1315 1315 "spdxId": "BSD-4-Clause",
1316 1316 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1317 1317 }
1318 1318 ],
1319 1319 "name": "python2.7-pyasn1-modules-0.2.2"
1320 1320 },
1321 1321 {
1322 1322 "license": [
1323 1323 {
1324 1324 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1325 1325 "shortName": "bsdOriginal",
1326 1326 "spdxId": "BSD-4-Clause",
1327 1327 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1328 1328 }
1329 1329 ],
1330 1330 "name": "python2.7-pyasn1-0.4.4"
1331 1331 },
1332 1332 {
1333 1333 "license": [
1334 1334 {
1335 1335 "fullName": "zlib License",
1336 1336 "shortName": "zlib",
1337 1337 "spdxId": "Zlib",
1338 1338 "url": "http://spdx.org/licenses/Zlib.html"
1339 1339 },
1340 1340 {
1341 1341 "fullName": "libpng License",
1342 1342 "shortName": "libpng",
1343 1343 "spdxId": "Libpng",
1344 1344 "url": "http://spdx.org/licenses/Libpng.html"
1345 1345 }
1346 1346 ],
1347 1347 "name": "python2.7-pysqlite-2.8.3"
1348 1348 },
1349 1349 {
1350 1350 "license": {
1351 1351 "fullName": "Repoze License",
1352 1352 "url": "http://www.repoze.org/LICENSE.txt"
1353 1353 },
1354 1354 "name": "python2.7-pyramid-1.9.2"
1355 1355 },
1356 1356 {
1357 1357 "license": [
1358 1358 {
1359 1359 "fullName": "MIT License",
1360 1360 "shortName": "mit",
1361 1361 "spdxId": "MIT",
1362 1362 "url": "http://spdx.org/licenses/MIT.html"
1363 1363 }
1364 1364 ],
1365 1365 "name": "python2.7-hupper-1.3"
1366 1366 },
1367 1367 {
1368 1368 "license": [
1369 1369 {
1370 1370 "fullName": "MIT License",
1371 1371 "shortName": "mit",
1372 1372 "spdxId": "MIT",
1373 1373 "url": "http://spdx.org/licenses/MIT.html"
1374 1374 }
1375 1375 ],
1376 1376 "name": "python2.7-plaster-pastedeploy-0.6"
1377 1377 },
1378 1378 {
1379 1379 "license": [
1380 1380 {
1381 1381 "fullName": "MIT License",
1382 1382 "shortName": "mit",
1383 1383 "spdxId": "MIT",
1384 1384 "url": "http://spdx.org/licenses/MIT.html"
1385 1385 }
1386 1386 ],
1387 1387 "name": "python2.7-plaster-1.0"
1388 1388 },
1389 1389 {
1390 1390 "license": [
1391 1391 {
1392 1392 "fullName": "MIT License",
1393 1393 "shortName": "mit",
1394 1394 "spdxId": "MIT",
1395 1395 "url": "http://spdx.org/licenses/MIT.html"
1396 1396 }
1397 1397 ],
1398 1398 "name": "python2.7-pastedeploy-1.5.2"
1399 1399 },
1400 1400 {
1401 1401 "license": {
1402 1402 "fullName": "Repoze License",
1403 1403 "url": "http://www.repoze.org/LICENSE.txt"
1404 1404 },
1405 1405 "name": "python2.7-pyramid-mako-1.0.2"
1406 1406 },
1407 1407 {
1408 1408 "license": [
1409 1409 {
1410 1410 "fullName": "Repoze Public License"
1411 1411 },
1412 1412 {
1413 1413 "fullName": "BSD-derived (http://www.repoze.org/LICENSE.txt)"
1414 1414 }
1415 1415 ],
1416 1416 "name": "python2.7-pyramid-jinja2-2.7"
1417 1417 },
1418 1418 {
1419 1419 "license": [
1420 1420 {
1421 1421 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1422 1422 "shortName": "bsdOriginal",
1423 1423 "spdxId": "BSD-4-Clause",
1424 1424 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1425 1425 },
1426 1426 {
1427 1427 "fullName": "Repoze License",
1428 1428 "url": "http://www.repoze.org/LICENSE.txt"
1429 1429 }
1430 1430 ],
1431 1431 "name": "python2.7-pyramid-debugtoolbar-4.4"
1432 1432 },
1433 1433 {
1434 1434 "license": [
1435 1435 {
1436 1436 "fullName": "Python Software Foundation License version 2",
1437 1437 "shortName": "psfl",
1438 1438 "spdxId": "Python-2.0",
1439 1439 "url": "http://spdx.org/licenses/Python-2.0.html"
1440 1440 }
1441 1441 ],
1442 1442 "name": "python2.7-ipaddress-1.0.22"
1443 1443 },
1444 1444 {
1445 1445 "license": {
1446 1446 "fullName": "Repoze License",
1447 1447 "url": "http://www.repoze.org/LICENSE.txt"
1448 1448 },
1449 1449 "name": "python2.7-pyramid-beaker-0.8"
1450 1450 },
1451 1451 {
1452 1452 "license": [
1453 1453 {
1454 1454 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1455 1455 "shortName": "bsdOriginal",
1456 1456 "spdxId": "BSD-4-Clause",
1457 1457 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1458 1458 }
1459 1459 ],
1460 1460 "name": "python2.7-beaker-1.9.1"
1461 1461 },
1462 1462 {
1463 1463 "license": [
1464 1464 {
1465 1465 "fullName": "MIT License",
1466 1466 "shortName": "mit",
1467 1467 "spdxId": "MIT",
1468 1468 "url": "http://spdx.org/licenses/MIT.html"
1469 1469 }
1470 1470 ],
1471 1471 "name": "python2.7-pyparsing-1.5.7"
1472 1472 },
1473 1473 {
1474 1474 "license": [
1475 1475 {
1476 1476 "fullName": "Apache License 2.0",
1477 1477 "shortName": "asl20",
1478 1478 "spdxId": "Apache-2.0",
1479 1479 "url": "http://spdx.org/licenses/Apache-2.0.html"
1480 1480 }
1481 1481 ],
1482 1482 "name": "python2.7-pygments-markdown-lexer-0.1.0.dev39"
1483 1483 },
1484 1484 {
1485 1485 "license": [
1486 1486 {
1487 1487 "fullName": "MIT License",
1488 1488 "shortName": "mit",
1489 1489 "spdxId": "MIT",
1490 1490 "url": "http://spdx.org/licenses/MIT.html"
1491 1491 }
1492 1492 ],
1493 1493 "name": "python2.7-pyflakes-0.8.1"
1494 1494 },
1495 1495 {
1496 1496 "license": {
1497 1497 "fullName": "MIT License",
1498 1498 "shortName": "mit",
1499 1499 "spdxId": "MIT",
1500 1500 "url": "http://spdx.org/licenses/MIT.html"
1501 1501 },
1502 1502 "name": "python2.7-pycurl-7.43.0.2"
1503 1503 },
1504 1504 {
1505 1505 "license": [
1506 1506 {
1507 1507 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1508 1508 "shortName": "bsdOriginal",
1509 1509 "spdxId": "BSD-4-Clause",
1510 1510 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1511 1511 }
1512 1512 ],
1513 1513 "name": "python2.7-py-bcrypt-0.4"
1514 1514 },
1515 1515 {
1516 1516 "license": {
1517 1517 "fullName": "GNU Lesser General Public License v3.0 or later",
1518 1518 "shortName": "lgpl3Plus",
1519 1519 "spdxId": "LGPL-3.0+",
1520 1520 "url": "http://spdx.org/licenses/LGPL-3.0+.html"
1521 1521 },
1522 1522 "name": "python2.7-psycopg2-2.7.4"
1523 1523 },
1524 1524 {
1525 1525 "license": {
1526 1526 "fullName": "PostgreSQL License",
1527 1527 "shortName": "postgresql",
1528 1528 "spdxId": "PostgreSQL",
1529 1529 "url": "http://spdx.org/licenses/PostgreSQL.html"
1530 1530 },
1531 1531 "name": "postgresql-9.6.10"
1532 1532 },
1533 1533 {
1534 1534 "license": [
1535 1535 {
1536 1536 "fullName": "BSD-derived (http://www.repoze.org/LICENSE.txt)"
1537 1537 }
1538 1538 ],
1539 1539 "name": "python2.7-peppercorn-0.5"
1540 1540 },
1541 1541 {
1542 1542 "license": [
1543 1543 {
1544 1544 "fullName": "MIT License",
1545 1545 "shortName": "mit",
1546 1546 "spdxId": "MIT",
1547 1547 "url": "http://spdx.org/licenses/MIT.html"
1548 1548 }
1549 1549 ],
1550 1550 "name": "python2.7-pastescript-2.0.2"
1551 1551 },
1552 1552 {
1553 1553 "license": [
1554 1554 {
1555 1555 "fullName": "Apache License 2.0",
1556 1556 "shortName": "asl20",
1557 1557 "spdxId": "Apache-2.0",
1558 1558 "url": "http://spdx.org/licenses/Apache-2.0.html"
1559 1559 }
1560 1560 ],
1561 1561 "name": "python2.7-packaging-15.2"
1562 1562 },
1563 1563 {
1564 1564 "license": [
1565 1565 {
1566 1566 "fullName": "MIT License",
1567 1567 "shortName": "mit",
1568 1568 "spdxId": "MIT",
1569 1569 "url": "http://spdx.org/licenses/MIT.html"
1570 1570 }
1571 1571 ],
1572 1572 "name": "python2.7-objgraph-3.1.1"
1573 1573 },
1574 1574 {
1575 1575 "license": [
1576 1576 {
1577 1577 "fullName": "MIT License",
1578 1578 "shortName": "mit",
1579 1579 "spdxId": "MIT",
1580 1580 "url": "http://spdx.org/licenses/MIT.html"
1581 1581 }
1582 1582 ],
1583 1583 "name": "python2.7-graphviz-0.9"
1584 1584 },
1585 1585 {
1586 1586 "license": [
1587 1587 {
1588 1588 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1589 1589 "shortName": "bsdOriginal",
1590 1590 "spdxId": "BSD-4-Clause",
1591 1591 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1592 1592 }
1593 1593 ],
1594 1594 "name": "python2.7-pyotp-2.2.6"
1595 1595 },
1596 1596 {
1597 1597 "license": [
1598 1598 {
1599 1599 "fullName": "MIT License",
1600 1600 "shortName": "mit",
1601 1601 "spdxId": "MIT",
1602 1602 "url": "http://spdx.org/licenses/MIT.html"
1603 1603 }
1604 1604 ],
1605 1605 "name": "python2.7-pymysql-0.8.1"
1606 1606 },
1607 1607 {
1608 1608 "license": [
1609 1609 {
1610 1610 "fullName": "GNU General Public License v1.0 only",
1611 1611 "shortName": "gpl1",
1612 1612 "spdxId": "GPL-1.0",
1613 1613 "url": "http://spdx.org/licenses/GPL-1.0.html"
1614 1614 }
1615 1615 ],
1616 1616 "name": "python2.7-mysql-python-1.2.5"
1617 1617 },
1618 1618 {
1619 1619 "license": {
1620 1620 "fullName": "GNU Library General Public License v2.1 only",
1621 1621 "shortName": "lgpl21",
1622 1622 "spdxId": "LGPL-2.1",
1623 1623 "url": "http://spdx.org/licenses/LGPL-2.1.html"
1624 1624 },
1625 1625 "name": "mariadb-connector-c-2.3.4"
1626 1626 },
1627 1627 {
1628 1628 "license": [
1629 1629 {
1630 1630 "fullName": "Apache License 2.0",
1631 1631 "shortName": "asl20",
1632 1632 "spdxId": "Apache-2.0",
1633 1633 "url": "http://spdx.org/licenses/Apache-2.0.html"
1634 1634 }
1635 1635 ],
1636 1636 "name": "python2.7-msgpack-python-0.5.6"
1637 1637 },
1638 1638 {
1639 1639 "license": [
1640 1640 {
1641 1641 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1642 1642 "shortName": "bsdOriginal",
1643 1643 "spdxId": "BSD-4-Clause",
1644 1644 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1645 1645 }
1646 1646 ],
1647 1647 "name": "python2.7-lxml-3.7.3"
1648 1648 },
1649 1649 {
1650 1650 "license": [
1651 1651 {
1652 1652 "fullName": "MIT License",
1653 1653 "shortName": "mit",
1654 1654 "spdxId": "MIT",
1655 1655 "url": "http://spdx.org/licenses/MIT.html"
1656 1656 }
1657 1657 ],
1658 1658 "name": "python2.7-wheel-0.30.0"
1659 1659 },
1660 1660 {
1661 1661 "license": [
1662 1662 {
1663 1663 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1664 1664 "shortName": "bsdOriginal",
1665 1665 "spdxId": "BSD-4-Clause",
1666 1666 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1667 1667 }
1668 1668 ],
1669 1669 "name": "python2.7-kombu-4.2.0"
1670 1670 },
1671 1671 {
1672 1672 "license": [
1673 1673 {
1674 1674 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1675 1675 "shortName": "bsdOriginal",
1676 1676 "spdxId": "BSD-4-Clause",
1677 1677 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1678 1678 }
1679 1679 ],
1680 1680 "name": "python2.7-amqp-2.3.1"
1681 1681 },
1682 1682 {
1683 1683 "license": [
1684 1684 {
1685 1685 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1686 1686 "shortName": "bsdOriginal",
1687 1687 "spdxId": "BSD-4-Clause",
1688 1688 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1689 1689 }
1690 1690 ],
1691 1691 "name": "python2.7-vine-1.1.4"
1692 1692 },
1693 1693 {
1694 1694 "license": [
1695 1695 {
1696 1696 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1697 1697 "shortName": "bsdOriginal",
1698 1698 "spdxId": "BSD-4-Clause",
1699 1699 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1700 1700 }
1701 1701 ],
1702 1702 "name": "python2.7-billiard-3.5.0.3"
1703 1703 },
1704 1704 {
1705 1705 "license": [
1706 1706 {
1707 1707 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1708 1708 "shortName": "bsdOriginal",
1709 1709 "spdxId": "BSD-4-Clause",
1710 1710 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1711 1711 }
1712 1712 ],
1713 1713 "name": "python2.7-itsdangerous-0.24"
1714 1714 },
1715 1715 {
1716 1716 "license": [
1717 1717 {
1718 1718 "fullName": "MIT License",
1719 1719 "shortName": "mit",
1720 1720 "spdxId": "MIT",
1721 1721 "url": "http://spdx.org/licenses/MIT.html"
1722 1722 }
1723 1723 ],
1724 1724 "name": "python2.7-iso8601-0.1.11"
1725 1725 },
1726 1726 {
1727 1727 "license": [
1728 1728 {
1729 1729 "fullName": "Zope Public License 2.1",
1730 1730 "shortName": "zpl21",
1731 1731 "spdxId": "ZPL-2.1",
1732 1732 "url": "http://spdx.org/licenses/ZPL-2.1.html"
1733 1733 }
1734 1734 ],
1735 1735 "name": "python2.7-infrae.cache-1.0.1"
1736 1736 },
1737 1737 {
1738 1738 "license": [
1739 1739 {
1740 1740 "fullName": "Python Software Foundation License version 2",
1741 1741 "shortName": "psfl",
1742 1742 "spdxId": "Python-2.0",
1743 1743 "url": "http://spdx.org/licenses/Python-2.0.html"
1744 1744 }
1745 1745 ],
1746 1746 "name": "python2.7-formencode-1.2.4"
1747 1747 },
1748 1748 {
1749 1749 "license": [
1750 1750 {
1751 1751 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1752 1752 "shortName": "bsdOriginal",
1753 1753 "spdxId": "BSD-4-Clause",
1754 1754 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1755 1755 }
1756 1756 ],
1757 1757 "name": "python2.7-dogpile.core-0.4.1"
1758 1758 },
1759 1759 {
1760 1760 "license": [
1761 1761 {
1762 1762 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1763 1763 "shortName": "bsdOriginal",
1764 1764 "spdxId": "BSD-4-Clause",
1765 1765 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1766 1766 }
1767 1767 ],
1768 1768 "name": "python2.7-dogpile.cache-0.6.6"
1769 1769 },
1770 1770 {
1771 1771 "license": {
1772 1772 "fullName": "BSD 2-clause \"Simplified\" License",
1773 1773 "shortName": "bsd2",
1774 1774 "spdxId": "BSD-2-Clause",
1775 1775 "url": "http://spdx.org/licenses/BSD-2-Clause.html"
1776 1776 },
1777 1777 "name": "python2.7-docutils-0.14"
1778 1778 },
1779 1779 {
1780 1780 "license": [
1781 1781 {
1782 1782 "fullName": "BSD-derived (http://www.repoze.org/LICENSE.txt)"
1783 1783 }
1784 1784 ],
1785 1785 "name": "python2.7-deform-2.0.5"
1786 1786 },
1787 1787 {
1788 1788 "license": {
1789 1789 "fullName": "Repoze License",
1790 1790 "url": "http://www.repoze.org/LICENSE.txt"
1791 1791 },
1792 1792 "name": "python2.7-colander-1.4"
1793 1793 },
1794 1794 {
1795 1795 "license": [
1796 1796 {
1797 1797 "fullName": "BSD-like (http://repoze.org/license.html)"
1798 1798 }
1799 1799 ],
1800 1800 "name": "python2.7-chameleon-2.24"
1801 1801 },
1802 1802 {
1803 1803 "license": [
1804 1804 {
1805 1805 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1806 1806 "shortName": "bsdOriginal",
1807 1807 "spdxId": "BSD-4-Clause",
1808 1808 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1809 1809 }
1810 1810 ],
1811 1811 "name": "python2.7-cssselect-1.0.3"
1812 1812 },
1813 1813 {
1814 1814 "license": [
1815 1815 {
1816 1816 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1817 1817 "shortName": "bsdOriginal",
1818 1818 "spdxId": "BSD-4-Clause",
1819 1819 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1820 1820 }
1821 1821 ],
1822 1822 "name": "python2.7-configobj-5.0.6"
1823 1823 },
1824 1824 {
1825 1825 "license": [
1826 1826 {
1827 1827 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1828 1828 "shortName": "bsdOriginal",
1829 1829 "spdxId": "BSD-4-Clause",
1830 1830 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1831 1831 }
1832 1832 ],
1833 1833 "name": "python2.7-channelstream-0.5.2"
1834 1834 },
1835 1835 {
1836 1836 "license": [
1837 1837 {
1838 1838 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1839 1839 "shortName": "bsdOriginal",
1840 1840 "spdxId": "BSD-4-Clause",
1841 1841 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1842 1842 }
1843 1843 ],
1844 1844 "name": "python2.7-ws4py-0.5.1"
1845 1845 },
1846 1846 {
1847 1847 "license": [
1848 1848 {
1849 1849 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1850 1850 "shortName": "bsdOriginal",
1851 1851 "spdxId": "BSD-4-Clause",
1852 1852 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1853 1853 }
1854 1854 ],
1855 1855 "name": "python2.7-celery-4.1.1"
1856 1856 },
1857 1857 {
1858 1858 "license": [
1859 1859 {
1860 1860 "fullName": "BSD 4-clause \"Original\" or \"Old\" License",
1861 1861 "shortName": "bsdOriginal",
1862 1862 "spdxId": "BSD-4-Clause",
1863 1863 "url": "http://spdx.org/licenses/BSD-4-Clause.html"
1864 1864 }
1865 1865 ],
1866 1866 "name": "python2.7-babel-1.3"
1867 1867 },
1868 1868 {
1869 1869 "license": [
1870 1870 {
1871 1871 "fullName": "MIT License",
1872 1872 "shortName": "mit",
1873 1873 "spdxId": "MIT",
1874 1874 "url": "http://spdx.org/licenses/MIT.html"
1875 1875 }
1876 1876 ],
1877 1877 "name": "python2.7-authomatic-0.1.0.post1"
1878 1878 },
1879 1879 {
1880 1880 "license": [
1881 1881 {
1882 1882 "fullName": "MIT License",
1883 1883 "shortName": "mit",
1884 1884 "spdxId": "MIT",
1885 1885 "url": "http://spdx.org/licenses/MIT.html"
1886 1886 }
1887 1887 ],
1888 1888 "name": "node-grunt-cli-1.2.0"
1889 1889 },
1890 1890 {
1891 1891 "license": [
1892 1892 {
1893 1893 "fullName": "MIT License",
1894 1894 "shortName": "mit",
1895 1895 "spdxId": "MIT",
1896 1896 "url": "http://spdx.org/licenses/MIT.html"
1897 1897 }
1898 1898 ],
1899 "name": "node-bower-1.8.4"
1900 },
1901 {
1902 "license": [
1903 {
1904 "fullName": "MIT License",
1905 "shortName": "mit",
1906 "spdxId": "MIT",
1907 "url": "http://spdx.org/licenses/MIT.html"
1908 }
1909 ],
1910 1899 "name": "python2.7-rhodecode-testdata-0.10.0"
1911 1900 }
1912 1901 ]
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: modified file
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
1 NO CONTENT: file was removed
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
1 NO CONTENT: file was removed
The requested commit or file is too big and content was truncated. Show full diff
General Comments 0
You need to be logged in to leave comments. Login now