Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg/TI05-delivery/ows_framework/trunk/Makefile@3017
Revision 2949,
893 bytes
checked in by pjkersha, 12 years ago
(diff) |
Makefile: fixed install target
ows_server/ows_server/models/ndgSecurity.py:
- include ows_server.lib.base import to enable refs to 'g' global.
- fixed g.securityCfg.acCACertFilePathList and g.securityCfg.acIssuer var refs
ows_server/ows_server/lib/security_util.py:
|
Line | |
---|
1 | # |
---|
2 | # NERC Data Grid Project |
---|
3 | # |
---|
4 | # @author P J Kershaw 30/08/07 |
---|
5 | # |
---|
6 | # Make all eggs |
---|
7 | # |
---|
8 | # @copyright (C) 2007 CCLRC & NERC |
---|
9 | # |
---|
10 | # @license This software may be distributed under the terms of the Q Public |
---|
11 | # License, version 1.0 or later. |
---|
12 | # |
---|
13 | # $Id:$ |
---|
14 | |
---|
15 | # ows_wps not currently needed in build |
---|
16 | #EGG_DIRS=ows_common ows_server ows_wps |
---|
17 | EGG_DIRS=ows_common ows_server |
---|
18 | |
---|
19 | # Override on the command line for alternative path |
---|
20 | PYTHON=python |
---|
21 | |
---|
22 | eggs: |
---|
23 | @-for dir in ${EGG_DIRS}; do \ |
---|
24 | cd $$dir; \ |
---|
25 | ${PYTHON} setup.py bdist_egg; \ |
---|
26 | cd ..; \ |
---|
27 | done; |
---|
28 | |
---|
29 | clean: |
---|
30 | @-for dir in ${EGG_DIRS}; do \ |
---|
31 | cd $$dir; \ |
---|
32 | rm -f dist/*.egg; \ |
---|
33 | cd ..; \ |
---|
34 | done; |
---|
35 | |
---|
36 | replace: clean eggs |
---|
37 | |
---|
38 | force: replace |
---|
39 | |
---|
40 | # Set on command line or via environment variables |
---|
41 | NDG_EGG_DIST_USER= |
---|
42 | NDG_EGG_DIST_HOST= |
---|
43 | NDG_EGG_DIST_DIR= |
---|
44 | |
---|
45 | install_eggs: eggs |
---|
46 | scp ows_server/dist/*.egg ows_common/dist/*.egg \ |
---|
47 | ${NDG_EGG_DIST_USER}@${NDG_EGG_DIST_HOST}:${NDG_EGG_DIST_DIR} |
---|
Note: See
TracBrowser
for help on using the repository browser.