~mitya57/ubuntu/trusty/dh-python/tests-dependencies

« back to all changes in this revision

Viewing changes to dhpython/build/plugin_cmake.py

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski
  • Date: 2013-07-07 21:47:50 UTC
  • Revision ID: package-import@ubuntu.com-20130707214750-d6wmodmuzp78kt75
Tags: upstream-1.0~b1
Import upstream version 1.0~b1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright © 2012-2013 Piotr Ożarowski <piotr@debian.org>
 
2
#
 
3
# Permission is hereby granted, free of charge, to any person obtaining a copy
 
4
# of this software and associated documentation files (the "Software"), to deal
 
5
# in the Software without restriction, including without limitation the rights
 
6
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
7
# copies of the Software, and to permit persons to whom the Software is
 
8
# furnished to do so, subject to the following conditions:
 
9
#
 
10
# The above copyright notice and this permission notice shall be included in
 
11
# all copies or substantial portions of the Software.
 
12
#
 
13
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
14
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
15
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
16
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
17
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
18
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 
19
# THE SOFTWARE.
 
20
 
 
21
from dhpython.build.base import Base, shell_command
 
22
 
 
23
 
 
24
# FIXME: doesn't work
 
25
class BuildSystem(Base):
 
26
    DESCRIPTION = 'CMake build system (using dh_auto_* commands)'
 
27
    REQUIRED_COMMANDS = ['cmake']
 
28
    REQUIRED_FILES = ['CMakeLists.txt']
 
29
    OPTIONAL_FILES = {'cmake_uninstall.cmake': 10, 'CMakeCache.txt': 10}
 
30
 
 
31
    @shell_command
 
32
    def clean(self, context, args):
 
33
        super(BuildSystem, self).clean(context, args)
 
34
        return 'dh_auto_clean --buildsystem=cmake'
 
35
 
 
36
    @shell_command
 
37
    def configure(self, context, args):
 
38
        return ('dh_auto_configure --buildsystem=cmake'
 
39
                ' --builddirectory="{build_dir}" --'
 
40
                ' -DPYTHON_EXECUTABLE:FILEPATH=/usr/bin/{interpreter}'
 
41
                ' {args}')
 
42
 
 
43
    @shell_command
 
44
    def build(self, context, args):
 
45
        return ('dh_auto_build --buildsystem=cmake'
 
46
                ' --builddirectory="{build_dir}"'
 
47
                ' -- {args}')
 
48
 
 
49
    @shell_command
 
50
    def install(self, context, args):
 
51
        return ('dh_auto_install --buildsystem=cmake'
 
52
                ' --builddirectory="{build_dir}"'
 
53
                ' --destdir="{dest_dir}"'
 
54
                ' -- {args}')
 
55
 
 
56
    @shell_command
 
57
    def test(self, context, args):
 
58
        return ('dh_auto_test --buildsystem=cmake'
 
59
                ' --builddirectory="{build_dir}"'
 
60
                ' -- {args}')