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