File: setup.py

package info (click to toggle)
laditools 1.1.0-3.1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 688 kB
  • sloc: python: 2,478; sh: 34; makefile: 5
file content (132 lines) | stat: -rwxr-xr-x 5,572 bytes parent folder | download | duplicates (2)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
#!/usr/bin/python

# LADITools - Linux Audio Desktop Integration Tools
# setup.py - Setup script for the LADITools suite
# Copyright (C) 2011-2012 Alessio Treglia <quadrispro@ubuntu.com>
# Copyright (C) 2007-2008, Marc-Olivier Barre <marco@marcochapeau.org>
# Copyright (C) 2007-2008, Nedko Arnaudov <nedko@arnaudov.name>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# 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, see <http://www.gnu.org/licenses/>.

import os
import sys
import subprocess
import glob
from distutils.core import setup
from distutils.command.clean import clean
from DistUtilsExtra.command import *

laditools_version = "1.1.0"
get_commit_script = "gitcommit.sh"
pkg_short_desc = "Linux Audio Desktop Integration Tools"
pkg_long_desc = """LADITools is a set of tools aiming to achieve the goals of the LADI project to improve desktop integration and user workflow of Linux audio system based on JACK and ladish. Those tools take advantage of the D-Bus interfaces recently added to JACK and ladish to ease the configuration and use of those two great softwares.

The following tools are included:
 * g15ladi             - a JACK monitor for g15 keyboards
 * ladi-control-center - graphical configuration tool to setup JACK's configuration
 * ladi-player         - convenient VLC-style application to control JACK and manage studios
 * ladi-system-log     - JACK, ladish and a2jmidid log viewer
 * ladi-system-tray    - system indicator that allows users to start, stop and monitor
                         JACK, as well as start some JACK related applications
 * wmladi              - Window Maker dockapp for controlling the LADI system"""
pkg_data_files = [('share/laditools/data', glob.glob('data/*.ui')),
                  ('share/laditools/data', glob.glob('data/*.svg'))]
pkg_scripts = ['g15ladi',
               'ladi-control-center',
               'ladi-player',
               'ladi-system-log',
               'ladi-system-tray',
               'wmladi',]

os.environ['XGETTEXT_ARGS'] = "--language=Python"

if not os.getenv("LADI_RELEASE") and \
        os.path.isfile(get_commit_script):
    commit = subprocess.check_output(["sh", get_commit_script]).strip()
    laditools_version += "~" + commit

iconsizelist = "16 22 24 32 48 64 96 128 256".split()

class my_build_extra(build_extra.build_extra):
    def run(self):
        data_files = self.distribution.data_files

        for manpage in glob.glob('data/*.[0-9]'):
            filename = os.path.split(manpage)[-1]
            subdir = 'man%s' % filename[-1]
            path = os.path.join('share', 'man', subdir)
            print manpage
            data_files.append((path, (manpage,)))

        build_extra.build_extra.run(self)

class build_icons_extra(build_icons.build_icons):
    def run(self):
        icondir = os.path.join('data', 'icons')
        scalabledir = os.path.join(icondir, "scalable")
        categories = os.listdir(scalabledir)

        for size in iconsizelist:
            sizedir = os.path.join(icondir, "%(size)sx%(size)s" % {'size':size})
            for category in categories:
                sizecategorydir = os.path.join(sizedir, category)
                self.spawn(['mkdir', '-p', sizecategorydir])
                for filename in os.listdir(os.path.join(scalabledir, category)):
                    newfilename = filename.rstrip('svg') + 'png'
                    self.spawn(['rsvg-convert',
                                '-f', 'png',
                                '-w', size, '-h', size,
                                os.path.join(scalabledir, category, filename),
                                '-o', os.path.join(sizecategorydir, newfilename)])

        build_icons.build_icons.run(self)

class clean_extra(clean_i18n.clean_i18n):
    def run(self):
        clean_i18n.clean_i18n.run(self)

        for path, dirs, files in os.walk('.'):
            for f in files:
                f = os.path.join(path, f)
                if f.endswith('.pyc'):
                    self.spawn(['rm', f])
            for d in dirs:
                if d == '__pycache__':
                    self.spawn(['rm', '-r', os.path.join(path,d)])

        for path, dirs, files in os.walk('./data/icons'):
            if path.endswith('icons'):
                for d in dirs:
                    if d != 'scalable':
                        self.spawn(['rm', '-r', os.path.join(path,d)])
                break

setup(name='laditools',
    version=laditools_version,
    author='Marc-Olivier Barre, Nedko Arnaudov and Alessio Treglia',
    author_email='linux-audio-dev@lists.linuxaudio.org',
    license='GPL-3',
    url='https://launchpad.net/laditools',
    download_url='https://launchpad.net/laditools/+download',
    description=pkg_short_desc,
    long_description=pkg_long_desc,
    packages=['laditools', 'laditools.gtk'],
    scripts=pkg_scripts,
    data_files=pkg_data_files,
    cmdclass={
        'build' : my_build_extra,
        'build_i18n' :  build_i18n.build_i18n,
        'build_icons' : build_icons_extra,
        'clean' : clean_extra}
)