forked from vantu5z/zimsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
164 lines (142 loc) · 5.7 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
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
# -*- encoding: utf-8 -*-
from __future__ import print_function
import os
import sys
import textwrap
# Setuptools/distutils import compatibility:
try:
from setuptools import setup
from setuptools.command.install import install as _install
USING_SETUPTOOLS = True
except:
print("WARNING: Failed to import setuptools.", file=sys.stderr)
print("Falling back to distutils.", file=sys.stderr)
print("NOTE: Using 'pip' is *not* supported in this configuration.",
file=sys.stderr)
from distutils.core import setup
from distutils.command.install import install as _install
USING_SETUPTOOLS = False
finally:
from distutils.command.install_data import install_data as _install_data
# Support classes:
class install(_install): # noqa: N801
"""
Standard install command, extended for data & var substitution.
Setuptools has a design flaw whereby data cannot be installed except
as package data. Since everything about this double-ended plugin is
a data file, that's a problem. We want setuptools for its support
of "pip uninstall" however, because the alternatives are nasty.
"""
def run(self):
"""Override, adding back in what "install_data" used to do."""
_install.run(self)
if USING_SETUPTOOLS:
install_data = self.get_finalized_command("install_data")
install_data.run()
class install_data(_install_data): # noqa: N801
"""
Standard install_data command, extended for variable substitution.
This recognizes input filenames with ".in" filename extensions, and
performs some variable subsitutions on them instead of a regular
copy. Subst'ed output files are written without the extension.
All this just because DBUS .service files require an absolute path.
"""
@property
def substs(self):
try:
return self.__substs
except AttributeError:
install_scripts = self.get_finalized_command("install_scripts")
self.__substs = [
("@INSTALL_DATA_DIR@", self.install_dir),
("@INSTALL_SCRIPTS_DIR@", install_scripts.install_dir),
]
return self.__substs
def copy_file(self, infile, outdir, *args, **kwargs):
"""
Copy a file into place, with substitutions.
The destination must be a directory, not a file.
"""
if not infile.endswith(".in"):
result = _install_data.copy_file(self, infile, outdir, *args,
**kwargs)
else:
out_basename = os.path.basename(infile)
(out_basename, _) = os.path.splitext(out_basename)
outfile = os.path.join(outdir, out_basename)
self.announce("expanding %s -> %s" % (infile, outfile), level=2)
self.announce("substs: %r" % (self.substs, ), level=1)
if not self.dry_run:
in_fp = open(infile, 'r')
if os.path.exists(outfile):
os.unlink(outfile)
out_fp = open(outfile, 'w')
for line in in_fp:
for s, r in self.substs:
line = line.replace(s, r)
out_fp.write(line)
in_fp.close()
out_fp.close()
result = (outfile, 1)
return result
def run(self):
"""Override for the default, with more permissions management."""
# Assume this bit gets mkpath() permissions right.
_install_data.run(self)
# Make sure that every data file that got installed is at least
# world-readable.
if not self.dry_run:
rrr = 0o444
for file in self.outfiles:
sbuf = os.stat(file)
assert sbuf is not None, "Installation has not taken place"
if (sbuf.st_mode & rrr) != rrr:
mode = sbuf.st_mode | rrr
self.announce(
"chmod 0%03o %r" % (mode & 0o666, file),
level=2,
)
os.chmod(file, mode)
# Script and GNOME search provider installation:
setup(
name='zimsearch',
version='0.0.2-alpha.0', # SemVer, interfaces unstable [0.x] while Zim's are too.
license="GPL-2.0+",
description='GNOME integration for Zim 0.67+',
url='https://github.com/achadwick/zimsearch',
requires=["dbus"],
long_description=textwrap.dedent("""
Integrates Zim into the GNOME search dialog.
This plugin provides search results from Zim in GNOME-shell's
desktop search overlay.
""").strip(),
author='Andrew Chadwick', # Formerly Davi da Silva Böger (@dsboger)
author_email='[email protected]',
scripts=["zim-gnomeshellsearch"],
data_files=[
('share/zim/plugins', ["src/gnomeshellsearch.py"]),
('share/dbus-1/services',
["data/zim.plugins.gnomeshellsearch.provider.service.in"]),
('share/gnome-shell/search-providers',
["data/zim.plugins.gnomeshellsearch.provider.ini.in"]),
],
cmdclass={
'install': install,
'install_data': install_data,
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: X11 Applications :: Gnome",
"Environment :: Plugins",
("License :: OSI Approved :: "
"GNU General Public License v2 or later (GPLv2+)"),
"Intended Audience :: End Users/Desktop",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Desktop Environment",
"Topic :: Utilities",
],
include_package_data=True,
use_2to3=True,
)