summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 8c26a9b8dc77ea0fef647dcf5ea832df8cc45453 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
# ex:ts=4:sw=4:sts=4:et
# -*- tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*-
#
# Copyright (C) 2003  Chris Larson
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

import os, sys
sys.path.append(os.path.join(os.path.dirname(__file__), "lib"))
from bb import __version__

from glob import glob
from distutils.command.clean import clean
from distutils.command.build import build
from distutils.core import setup


doctype = "html"

class Clean(clean):
    def run(self):
        clean.run(self)
        origpath = os.path.abspath(os.curdir)
        os.chdir(os.path.join(origpath, 'doc', 'manual'))
        make = os.environ.get('MAKE') or 'make'
        os.system('%s clean-%s' % (make, doctype))

class Build(build):
    def run(self):
        build.run(self)
        origpath = os.path.abspath(os.curdir)
        os.chdir(os.path.join(origpath, 'doc', 'manual'))
        make = os.environ.get('MAKE') or 'make'
        ret = os.system('%s %s' % (make, doctype))
        if ret != 0:
            print("ERROR: Unable to generate html documentation.")
            sys.exit(ret)
        os.chdir(origpath)

setup(name='bitbake',
      version = __version__,
      requires = ["ply", "progressbar"],
      package_dir = {"": "lib"},
      packages = ["bb.server", "bb.parse.parse_py", "bb.parse", 
                  "bb.fetch2", "bb.ui.crumbs", "bb.ui", "bb.pysh", "bb", "prserv", "bb.tests"],
      py_modules = ["codegen"],
      scripts = ["bin/bitbake", "bin/bitbake-layers", "bin/bitbake-diffsigs", "bin/bitbake-prserv", "bin/bitbake-selftest", "bin/image-writer"],
      data_files = [("share/bitbake", glob("conf/*") + glob("classes/*")),
                  ("share/doc/bitbake-%s/manual" % __version__, glob("doc/manual/html/*"))],
      cmdclass = {
          "build": Build,
          "clean": Clean,
      },

      license = 'GPLv2',
      url = 'http://www.openembedded.org/wiki/BitBake',
      description = 'BitBake build tool',
      long_description = 'BitBake is a simple tool for the execution of tasks. It is derived from Portage, which is the package management system used by the Gentoo Linux distribution. It is most commonly used to build packages, as it can easily use its rudimentary inheritance to abstract common operations, such as fetching sources, unpacking them, patching them, compiling them, and so on.  It is the basis of the OpenEmbedded project, which is being used for OpenZaurus, Familiar, and a number of other Linux distributions.',
      author = 'BitBake Development Team',
      author_email = 'bitbake-dev@lists.berlios.de',
)