-
Notifications
You must be signed in to change notification settings - Fork 185
/
setup.py
131 lines (114 loc) · 4.46 KB
/
setup.py
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
"""
Tor Browser Launcher
https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/
Copyright (c) 2013-2023 Micah Lee <[email protected]>
Copyright (c) 2024 Tor Project
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
"""
import os
import sys
import distro
import subprocess
from distutils.core import setup
SHARE = "share"
# detect linux distribution
distro = distro.linux_distribution()[0]
def file_list(path):
files = []
for filename in os.listdir(path):
if os.path.isfile(path + "/" + filename):
files.append(path + "/" + filename)
return files
def create_mo_files():
po_dir = "po/"
if not os.path.exists(po_dir):
return []
domain = "torbrowser-launcher"
mo_files = []
po_files = sorted(
[f for f in next(os.walk(po_dir))[2] if os.path.splitext(f)[1] == ".po"]
)
for po_file in po_files:
filename, extension = os.path.splitext(po_file)
mo_file = domain + ".mo"
mo_dir = "share/locale/" + filename + "/LC_MESSAGES/"
subprocess.call("mkdir -p " + mo_dir, shell=True)
msgfmt_cmd = "msgfmt {} -o {}".format(po_dir + po_file, mo_dir + mo_file)
subprocess.call(msgfmt_cmd, shell=True)
mo_files.append(mo_dir + mo_file)
return mo_files
with open(os.path.join(SHARE, "torbrowser-launcher/version")) as buf:
version = buf.read().strip()
datafiles = []
for root, dirs, files in os.walk(SHARE):
if files:
datafiles.append((root, [os.path.join(root, f) for f in files]))
# disable shipping apparmor profiles until they work in ubuntu (#128)
if distro != "Ubuntu":
if not hasattr(sys, "real_prefix"):
# we're not in a virtualenv, so we can probably write to /etc
datafiles += [
(
"/etc/apparmor.d/",
["apparmor/torbrowser.Browser.firefox", "apparmor/torbrowser.Tor.tor"],
),
(
"/etc/apparmor.d/local/",
[
"apparmor/local/torbrowser.Browser.firefox",
"apparmor/local/torbrowser.Tor.tor",
],
),
("/etc/apparmor.d/tunables/", ["apparmor/tunables/torbrowser"]),
]
datafiles += [(os.path.dirname(f), [f]) for f in create_mo_files()]
setup(
name="torbrowser-launcher",
version=version,
author="Micah Lee",
author_email="[email protected]",
maintainer="Nicolas Vigier",
maintainer_email="[email protected]",
url="https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/",
platforms=["GNU/Linux"],
license="MIT",
description="A program to help you securely download and run Tor Browser",
long_description="""
Tor Browser Launcher is intended to make Tor Browser easier to install and use
for GNU/Linux users. You install torbrowser-launcher from your distribution's
package manager and it handles securely downloading the most recent version of
Tor Browser for you, in your language and for your architecture. It also adds a
"Tor Browser" application launcher to your operating system's menu. When you
first launch Tor Browser Launcher, it will download Tor Browser from
https://www.torproject.org/, verify the PGP signature, extract it in your home
directory, and launch it. When you run it after that it will just launch Tor
Browser.
""",
packages=["torbrowser_launcher"],
scripts=["torbrowser-launcher"],
data_files=datafiles,
install_requires=[
"gpg",
"packaging",
"PyQt5",
"requests",
"PySocks",
],
)