update from RIFT as of 696b75d2fe9fb046261b08c616f1bcf6c0b54a9b second try
[osm/SO.git] / rwlaunchpad / plugins / rwimagemgr / CMakeLists.txt
1
2 #   Copyright 2016 RIFT.IO Inc
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 #
16 # Author(s): Austin Cormier
17 # Creation Date: 2016/06/23
18
19
20 include(rift_plugin)
21
22 set(TASKLET_NAME rwimagemgrtasklet)
23
24 ##
25 # This function creates an install target for the plugin artifacts
26 ##
27 rift_install_gobject_python_plugin(${TASKLET_NAME} ${TASKLET_NAME}.py COMPONENT ${INSTALL_COMPONENT})
28
29 # Workaround RIFT-6485 - rpmbuild defaults to python2 for
30 # anything not in a site-packages directory so we have to
31 # install the plugin implementation in site-packages and then
32 # import it from the actual plugin.
33 rift_python_install_tree(
34   FILES
35     rift/tasklets/rwimagemgr/__init__.py
36     rift/tasklets/rwimagemgr/glance_client.py
37     rift/tasklets/rwimagemgr/glance_proxy_server.py
38     rift/tasklets/rwimagemgr/tasklet.py
39     rift/tasklets/rwimagemgr/upload.py
40     rift/tasklets/rwimagemgr/lib/__init__.py
41     rift/tasklets/rwimagemgr/lib/quickproxy/__init__.py
42     rift/tasklets/rwimagemgr/lib/quickproxy/proxy.py
43   COMPONENT ${INSTALL_COMPONENT}
44   PYTHON3_ONLY)
45
46 rift_python_install_tree(
47   FILES
48     rift/imagemgr/__init__.py
49     rift/imagemgr/client.py
50   COMPONENT ${INSTALL_COMPONENT}
51   PYTHON3_ONLY)
52
53 install(
54     PROGRAMS
55         bin/glance_start_wrapper
56     DESTINATION
57         usr/bin
58   COMPONENT ${INSTALL_COMPONENT}
59     )
60
61 if($ENV{RIFT_PLATFORM} MATCHES "fc20")
62   install(
63       FILES
64           etc/fc20/glance-api.conf
65           etc/fc20/glance-registry.conf
66           etc/fc20/glance-scrubber.conf
67           etc/fc20/glance-cache.conf
68           etc/fc20/policy.json
69           etc/fc20/schema-image.json
70           etc/fc20/glance-api-dist-paste.ini
71       DESTINATION
72           etc/glance
73       COMPONENT ${INSTALL_COMPONENT}
74       )
75 elseif($ENV{RIFT_PLATFORM} MATCHES "ub16")
76   install(
77       FILES
78           etc/ub16/glance-api.conf
79           etc/ub16/glance-api-paste.ini
80           etc/ub16/glance-registry.conf
81           etc/ub16/glance-registry-paste.ini
82           etc/ub16/glance-cache.conf
83           etc/ub16/glance-manage.conf
84           etc/ub16/policy.json
85           etc/ub16/schema-image.json
86       DESTINATION
87           etc/glance
88       COMPONENT ${INSTALL_COMPONENT}
89       )
90 else()
91     message(FATAL_ERROR "Unknown platform $ENV{RIFT_PLATFORM}")
92 endif()
93
94 rift_add_subdirs(test)