summaryrefslogtreecommitdiff
path: root/setup.py
blob: c90db9a7cda2d5b0803a31284729cd4a95903a01 (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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import print_function
import sys

try:
    from setuptools import setup, find_packages
except ImportError:
    from pkg import distribute_setup
    distribute_setup.use_setuptools()
    from setuptools import setup, find_packages
import os

from pkg import utils
from pkg import branding
import versioneer
versioneer.versionfile_source = 'src/leap/_version.py'
versioneer.versionfile_build = 'leap/_version.py'
versioneer.tag_prefix = ''  # tags are like 1.2.0
#versioneer.parentdir_prefix = 'leap_client-'
versioneer.parentdir_prefix = branding.APP_PREFIX

branding.brandingfile = 'src/leap/_branding.py'
branding.brandingfile_build = 'leap/_branding.py'
branding.cert_path = 'src/leap/certs'

setup_root = os.path.dirname(__file__)
sys.path.insert(0, os.path.join(setup_root, "src"))

trove_classifiers = [
    "Development Status :: 3 - Alpha",
    "Environment :: X11 Applications :: Qt",
    "Intended Audience :: End Users/Desktop",
    ("License :: OSI Approved :: GNU General "
     "Public License v3 or later (GPLv3+)"),
    "Operating System :: OS Independent",
    "Programming Language :: Python",
    "Programming Language :: Python :: 2.6",
    "Programming Language :: Python :: 2.7",
    "Topic :: Communications",
    "Topic :: Security",
    "Topic :: System :: Networking",
    "Topic :: Utilities"
]

BRANDING_OPTS = """
# Do NOT manually edit this file!
# This file has been written from pkg/branding/config.py data by leap setup.py
# script.

BRANDING = {
    'short_name': "%(short_name)s",
    'provider_domain': "%(provider_domain)s",
    'provider_ca_file': "%(provider_ca_file)s"}
"""


def write_to_branding_file(filename, branding_dict):
    f = open(filename, "w")
    f.write(BRANDING_OPTS % branding_dict)
    f.close()


def copy_pemfile_to_certdir(frompath, topath):
    with open(frompath, "r") as cert_f:
        cert_s = cert_f.read()
    with open(topath, "w") as f:
        f.write(cert_s)


def do_branding(targetfile=branding.brandingfile):
    if branding.BRANDED_BUILD:
        opts = branding.BRANDED_OPTS
        print("DOING BRANDING FOR LEAP")
        certpath = opts['provider_ca_path']
        shortname = opts['short_name']
        tocertfile = shortname + '-cacert.pem'
        topath = os.path.join(
            branding.cert_path,
            tocertfile)
        copy_pemfile_to_certdir(
            certpath,
            topath)
        opts['provider_ca_file'] = tocertfile
        write_to_branding_file(
            targetfile,
            opts)
    else:
        print('not running branding because BRANDED_BUILD set to False')


from setuptools import Command


class DoBranding(Command):
    description = "copy the branding info the the top level package"
    user_options = []

    def initialize_options(self):
        pass

    def finalize_options(self):
        pass

    def run(self):
        do_branding()

from distutils.command.build import build as _build
from distutils.command.sdist import sdist as _sdist


class cmd_build(_build):
    def run(self):
        #versioneer.cmd_build(self)
        _build.run(self)

        # versioneer
        versions = versioneer.get_versions(verbose=True)
        # now locate _version.py in the new build/ directory and replace it
        # with an updated value
        target_versionfile = os.path.join(
            self.build_lib,
            versioneer.versionfile_build)
        print("UPDATING %s" % target_versionfile)
        os.unlink(target_versionfile)
        f = open(target_versionfile, "w")
        f.write(versioneer.SHORT_VERSION_PY % versions)
        f.close()

        # branding
        target_brandingfile = os.path.join(
            self.build_lib,
            branding.brandingfile_build)
        do_branding(targetfile=target_brandingfile)


class cmd_sdist(_sdist):
    def run(self):
        # versioneer:
        versions = versioneer.get_versions(verbose=True)
        self._versioneer_generated_versions = versions
        # unless we update this, the command will keep using the old version
        self.distribution.metadata.version = versions["version"]

        # branding:
        do_branding()
        return _sdist.run(self)

    def make_release_tree(self, base_dir, files):
        _sdist.make_release_tree(self, base_dir, files)
        # now locate _version.py in the new base_dir directory (remembering
        # that it may be a hardlink) and replace it with an updated value
        target_versionfile = os.path.join(
            base_dir, versioneer.versionfile_source)
        print("UPDATING %s" % target_versionfile)
        os.unlink(target_versionfile)
        f = open(target_versionfile, "w")
        f.write(
            versioneer.SHORT_VERSION_PY % self._versioneer_generated_versions)
        f.close()

from distutils.command.install_data import install_data as _install_data


class cmd_post_install(_install_data):
    """
    workaround for installing non-package data
    outside of the bounds of our internal data
    Debian or other packaging should igore this.
    """
    # We could use a environmental flag.
    def run(self):
        _install_data.run(self)
        # get environ flag to skip copy
        skip_copy_val = os.environ.get('LEAP_SKIP_COPY_POLKIT', '0')
        try:
            skip_copy = bool(int(skip_copy_val))
        except ValueError:
            skip_copy = False
            print("WARNING! LEAP_SKIP_COPY_POLKIT must be '0' or '1'")
        if skip_copy is True:
            print("Skipping install of policykit file per environ var.")
            return

        print('about to check for virtualenv')
        # is this the real life? is this just fantasy?
        if not hasattr(sys, 'real_prefix'):
            # looks like we are NOT
            # running inside a virtualenv...
            # let's install data.
            import shutil
            print("Now installing policykit file...")
            try:
                shutil.copyfile(
                    "pkg/linux/polkit/net.openvpn.gui.leap.policy",
                    "/usr/share/polkit-1/actions"
                    "/net.openvpn.gui.leap.policy")
            except:
                print("WARNING! Could not copy data.")
        else:
            print('inside virtualenv. skipping policykit file install')

cmdclass = versioneer.get_cmdclass()
cmdclass["branding"] = DoBranding
cmdclass["build"] = cmd_build
cmdclass["sdist"] = cmd_sdist
cmdclass["install_data"] = cmd_post_install


launcher_name = branding.get_shortname()
if launcher_name:
    leap_launcher = 'leap-%s-client=leap.app:main' % launcher_name
else:
    leap_launcher = 'leap=leap.app:main'

setup(
    name=branding.get_name(),
    package_dir={"": "src"},
    version=versioneer.get_version(),
    cmdclass=cmdclass,
    description="the internet encryption toolkit",
    long_description=(
        "Desktop Client for the LEAP Platform."
        "\n"
        "LEAP (LEAP Encryption Access Project) develops "
        "a multi-year plan to secure everyday communication, breaking down"
        "into discrete services, to be rolled out one at a time.\n"
        "The client for the current phase gives support to the EIP Service."
        "EIP (the Encrypted Internet Proxy) provides circumvention, location "
        "anonymization, and traffic "
        "encryption in a hassle-free, automatically self-configuring fashion, "
        "and has an enhanced level of security."
    ),
    classifiers=trove_classifiers,
    install_requires=utils.parse_requirements(),
    test_suite='nose.collector',
    test_requires=utils.parse_requirements(
        reqfiles=['pkg/test-requirements.pip']),
    keywords='leap, client, qt, encryption, proxy',
    author='The LEAP project',
    author_email='info@leap.se',
    url='https://leap.se',
    license='GPL',
    packages=find_packages(
        'src',
        exclude=['ez_setup', 'setup', 'examples', 'tests']),
    include_package_data=True,
    zip_safe=False,

    # not being used since setuptools does not like it.
    data_files=[
        ("share/man/man1",
            ["docs/leap.1"]),
        ("share/polkit-1/actions",
            ["pkg/linux/polkit/net.openvpn.gui.leap.policy"])
    ],
    platforms="all",
    entry_points = {
        'console_scripts': [leap_launcher]
    },
)