Mercurial > libervia-backend
annotate setup.py @ 376:9ffae6abdb05
bridge: .ini arguments are now named jid or .*_jid if a Jabber ID is expected
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 11 Aug 2011 18:36:22 +0200 |
parents | a3aa4d046914 |
children | 813a869315dc |
rev | line source |
---|---|
225 | 1 #!/usr/bin/env python |
2 # -*- coding: utf-8 -*- | |
3 | |
238
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
4 """ |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
5 SAT: a jabber client |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
6 Copyright (C) 2009, 2010, 2011 Jérôme Poisson (goffi@goffi.org) |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
7 |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
8 This program is free software: you can redistribute it and/or modify |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
9 it under the terms of the GNU General Public License as published by |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
10 the Free Software Foundation, either version 3 of the License, or |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
11 (at your option) any later version. |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
12 |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
13 This program is distributed in the hope that it will be useful, |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
14 but WITHOUT ANY WARRANTY; without even the implied warranty of |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
16 GNU General Public License for more details. |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
17 |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
18 You should have received a copy of the GNU General Public License |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
19 along with this program. If not, see <http://www.gnu.org/licenses/>. |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
20 """ |
83d2bc0abf2a
version, README, CHANGELOG and INSTALL updates
Goffi <goffi@goffi.org>
parents:
237
diff
changeset
|
21 |
230
b25cbec73c1e
distutils: removes build and dist from manifest's prune
Goffi <goffi@goffi.org>
parents:
227
diff
changeset
|
22 from distribute_setup import use_setuptools |
b25cbec73c1e
distutils: removes build and dist from manifest's prune
Goffi <goffi@goffi.org>
parents:
227
diff
changeset
|
23 use_setuptools() |
b25cbec73c1e
distutils: removes build and dist from manifest's prune
Goffi <goffi@goffi.org>
parents:
227
diff
changeset
|
24 from setuptools.command.install import install |
b25cbec73c1e
distutils: removes build and dist from manifest's prune
Goffi <goffi@goffi.org>
parents:
227
diff
changeset
|
25 from setuptools import setup |
225 | 26 from distutils.file_util import copy_file |
27 import os,sys,subprocess | |
28 from stat import ST_MODE | |
29 from glob import glob | |
30 | |
31 NAME = 'sat' | |
32 LAUNCH_DAEMON_COMMAND = 'sat' | |
33 | |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
34 class MercurialException(Exception): |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
35 pass |
225 | 36 |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
37 def module_installed(module_name): |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
38 """Try to import muc from custom wokkel build |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
39 @param module_name: name of the module to test |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
40 @return: True if successful""" |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
41 try: |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
42 __import__(module_name) |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
43 except: |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
44 return False |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
45 return True |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
46 |
225 | 47 class custom_install(install): |
48 | |
49 def custom_auto_options(self): | |
50 """Change options for twistd in the shell script | |
51 Mainly change the paths""" | |
52 sh_buffer = "" | |
53 run_dir = os.path.dirname(self.sh_script_path) | |
54 with open(self.sh_script_path,'r') as sh_file: | |
55 for ori_line in sh_file: | |
56 if ori_line.startswith('DAEMON='): | |
57 dest_line = 'DAEMON=""\n' #we want to launch sat as a daemon | |
58 elif ori_line.startswith('TAP_PATH='): | |
59 dest_line = 'TAP_PATH="%s/"\n' % run_dir | |
60 else: | |
61 dest_line = ori_line | |
62 sh_buffer += dest_line | |
63 | |
64 with open(self.sh_script_path,'w') as sh_file: | |
65 sh_file.write(sh_buffer) | |
66 | |
67 | |
68 def custom_create_links(self): | |
69 """Create symbolic links to executables""" | |
70 #the script which launch the daemon | |
71 links = [(self.sh_script_path,LAUNCH_DAEMON_COMMAND),] | |
72 for source,dest in links: | |
73 dest_name, copied = copy_file(source, os.path.join(self.install_scripts, dest), link='sym') | |
74 assert (copied) | |
75 #we change the perm in the same way as in the original install_scripts | |
76 mode = ((os.stat(dest_name)[ST_MODE]) | 0555) & 07777 | |
77 os.chmod(dest_name, mode) | |
78 | |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
79 |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
80 def custom_wokkel_requirement(self): |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
81 """Test if the custom wokkel is present, else get and build it""" |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
82 if not module_installed('wokkel.muc'): |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
83 sys.stdout.write ('Custom wokkel is not present, building it\n') |
295 | 84 sys.stdout.flush() |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
85 import tempfile |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
86 ori_path = os.getcwd() |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
87 work_path = tempfile.mkdtemp() |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
88 os.chdir(work_path) |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
89 hg_path = subprocess.Popen('which hg', stdout=subprocess.PIPE, shell=True).communicate()[0][:-1] |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
90 #we are now in a temp dir, we can get the repositories |
294
9821e3dde550
installation: wokkel hack now use specific revision to avoid merge conflict, and use the same options as for the parent setup.py
Goffi <goffi@goffi.org>
parents:
293
diff
changeset
|
91 commands = ['%s clone http://hg.ik.nu/wokkel -r f9cd8ca1a62d' % hg_path, #XXX: we use specific revision to avoid merge conflict |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
92 'cd wokkel', |
294
9821e3dde550
installation: wokkel hack now use specific revision to avoid merge conflict, and use the same options as for the parent setup.py
Goffi <goffi@goffi.org>
parents:
293
diff
changeset
|
93 '%s pull -f http://hg.ik.nu/ralphm/wokkel-muc-client-support-24-2 -r 1b19c49d30c2' % hg_path, |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
94 '%s merge wokkel-muc-client-support-24' % hg_path, |
349 | 95 '%s commit -u "SaT installation script" -m "Merged wokkel\'s MUC branch"' % hg_path, |
295 | 96 '%s setup.py %s' % (sys.executable, ' '.join(sys.argv[1:]))] #XXX: we use the same arguments as for this setup.py |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
97 for command in commands: |
233
6a37bc1b0b8c
distutils: fixed custom wokkel building
Goffi <goffi@goffi.org>
parents:
232
diff
changeset
|
98 if command.startswith('cd '): |
6a37bc1b0b8c
distutils: fixed custom wokkel building
Goffi <goffi@goffi.org>
parents:
232
diff
changeset
|
99 os.chdir(command[3:]) |
6a37bc1b0b8c
distutils: fixed custom wokkel building
Goffi <goffi@goffi.org>
parents:
232
diff
changeset
|
100 else: |
6a37bc1b0b8c
distutils: fixed custom wokkel building
Goffi <goffi@goffi.org>
parents:
232
diff
changeset
|
101 ret = subprocess.call(command, stdout=open('/dev/null', 'w'), shell=True) |
6a37bc1b0b8c
distutils: fixed custom wokkel building
Goffi <goffi@goffi.org>
parents:
232
diff
changeset
|
102 if ret!=0: |
6a37bc1b0b8c
distutils: fixed custom wokkel building
Goffi <goffi@goffi.org>
parents:
232
diff
changeset
|
103 os.chdir(ori_path) |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
104 sys.stderr.write ("ERROR while building/installing custom wokkel\n") |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
105 sys.stderr.write ('Error happened when executing [%s]\n' % command) |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
106 sys.stderr.write ('tmpdir is [%s]\n' % work_path) |
233
6a37bc1b0b8c
distutils: fixed custom wokkel building
Goffi <goffi@goffi.org>
parents:
232
diff
changeset
|
107 raise MercurialException |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
108 os.chdir(ori_path) |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
109 sys.stdout.write ("Custom wokkel builded and installed, removing temporary files\n") |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
110 import shutil |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
111 shutil.rmtree(work_path) |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
112 sys.stdout.write ("done\n") |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
113 else: |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
114 sys.stdout.write ("Custom wokkel already installed\n") |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
115 |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
116 |
225 | 117 def run(self): |
118 install.run(self) | |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
119 sys.stdout.write ('running post installation stuff\n') |
349 | 120 sys.stdout.flush() |
225 | 121 self.sh_script_path = os.path.join(self.install_lib,'sat','sat.sh') |
122 self.primitivus_path = os.path.join(self.install_lib,'sat_frontends','primitivus') | |
123 self.custom_auto_options() | |
124 self.custom_create_links() | |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
125 self.custom_wokkel_requirement() |
225 | 126 |
127 | |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
128 def preinstall_check(): |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
129 """Check presence of problematic dependencies, and try to install them with package manager |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
130 This ugly stuff is necessary as distributions are not installed correctly with setuptools/distribute |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
131 Hope to remove this at some point""" |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
132 |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
133 #modules_tocheck=['twisted', 'twisted.words', 'twisted.web', 'wx', 'urwid'] |
237
aae816738314
distutils: added urwid-satext dependency, and gobject in preinstall_check
Goffi <goffi@goffi.org>
parents:
235
diff
changeset
|
134 modules_tocheck=['wx','gobject'] #XXX: wx is the only one to be really difficult to install, python-gobject is not up-to-date in PyPi |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
135 |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
136 package = {'twisted':'python-twisted-core', |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
137 'twisted.words':'python-twisted-words', |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
138 'twisted.web':'python-twisted-web', |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
139 'wx':'python-wxgtk2.8', |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
140 'urwid':'python-urwid', |
237
aae816738314
distutils: added urwid-satext dependency, and gobject in preinstall_check
Goffi <goffi@goffi.org>
parents:
235
diff
changeset
|
141 'gobject':'python-gobject', |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
142 'mercurial':'mercurial'} #this dict map dependencies to packages names for debian distributions |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
143 |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
144 sys.stdout.write ("Running pre-installation dependencies check\n") |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
145 |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
146 #which modules are not installed ? |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
147 modules_toinstall = filter(lambda mod:not module_installed(mod),modules_tocheck) |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
148 """#is mercurial available ? |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
149 hg_installed = subprocess.call('which hg', stdout=open('/dev/null', 'w'), shell=True) == 0 |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
150 if not hg_installed: |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
151 modules_toinstall.append('mercurial')""" #hg can be installed from pypi |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
152 |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
153 if modules_toinstall: |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
154 #are we on a distribution using apt ? |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
155 apt_path = subprocess.Popen('which apt-get', stdout=subprocess.PIPE, shell=True).communicate()[0][:-1] |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
156 not_installed=set() |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
157 if apt_path: |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
158 #we have apt, we'll try to use it |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
159 for module_name in modules_toinstall: |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
160 package_name = package[module_name] |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
161 sys.stdout.write ("Installing %s\n" % package_name) |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
162 success = subprocess.call('%s -qy install %s' % (apt_path,package_name), shell=True) == 0 |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
163 if not success: |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
164 not_installed.add(module_name) |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
165 else: |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
166 not_installed=set(modules_toinstall) |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
167 |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
168 if not_installed: |
237
aae816738314
distutils: added urwid-satext dependency, and gobject in preinstall_check
Goffi <goffi@goffi.org>
parents:
235
diff
changeset
|
169 #some packages can't be automatically installed, we print their name for manual installation |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
170 sys.stdout.write ("You should install the following dependencies with your distribution recommanded tool before installing %s:\n" % NAME) |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
171 for module_name in not_installed: |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
172 sys.stdout.write ("- %s (Debian name: %s)\n" % (module_name,package[module_name])) |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
173 sys.exit(2) |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
174 |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
175 |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
176 if sys.argv[1].lower() in ['egg_info','install']: |
237
aae816738314
distutils: added urwid-satext dependency, and gobject in preinstall_check
Goffi <goffi@goffi.org>
parents:
235
diff
changeset
|
177 #we only check dependencies if egg_info or install is used |
349 | 178 install_opt = os.environ.get("SAT_INSTALL","") |
179 if not "nopreinstall" in install_opt: #user can force preinstall skipping | |
180 preinstall_check() | |
225 | 181 |
182 setup(name=NAME, | |
349 | 183 version='0.2.0', |
225 | 184 description=u'Salut à Toi multi-frontend XMPP client', |
185 long_description=u'Salut à Toi (SàT) is a XMPP client based on a daemon/frontend architecture. You can use it with the desktop frontend (wix - WxPython based), console ui frontend (Primitivus, Urwid based), or command line frontend (jp), and others are coming. ', | |
186 author='Goffi (Jérôme Poisson)', | |
187 author_email='goffi@goffi.org', | |
188 url='http://wiki.goffi.org/wiki/Salut_%C3%A0_Toi', | |
189 classifiers=['Development Status :: 3 - Alpha', | |
190 'Environment :: Console', | |
191 'Environment :: X11 Applications :: GTK', | |
192 'Framework :: Twisted', | |
193 'License :: OSI Approved :: GNU General Public License (GPL)', | |
194 'Operating System :: POSIX :: Linux', | |
195 'Topic :: Communications :: Chat'], | |
196 package_dir = {'sat':'src', 'sat_frontends':'frontends/src'}, | |
335 | 197 packages=['sat','sat.tools','sat.bridge', 'sat.plugins', 'sat.test', 'sat.core', |
225 | 198 'sat_frontends', 'sat_frontends.bridge', 'sat_frontends.quick_frontend', |
227 | 199 'sat_frontends.primitivus', 'sat_frontends.wix'], |
200 package_data = {'sat': ['sat.tac','sat.sh'], | |
373
a3aa4d046914
core: MANIFEST.in and setup.py cleaning
Goffi <goffi@goffi.org>
parents:
349
diff
changeset
|
201 'sat_frontends': ['wix/COPYING']}, |
225 | 202 data_files=[(os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']), |
203 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/i18n/fr/LC_MESSAGES/sat_frontend.mo']), | |
204 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/src/jp/i18n/fr/LC_MESSAGES/jp.mo']), | |
227 | 205 ('share/doc/%s' % NAME, ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']), |
206 ], | |
207 scripts=['frontends/src/jp/jp', 'frontends/src/primitivus/primitivus', 'frontends/src/wix/wix'], | |
230
b25cbec73c1e
distutils: removes build and dist from manifest's prune
Goffi <goffi@goffi.org>
parents:
227
diff
changeset
|
208 zip_safe=False, |
293
42438e43104a
Plugin XEP-0277: first draft of microblogging over ip /!\ new dependencies added /!\
Goffi <goffi@goffi.org>
parents:
275
diff
changeset
|
209 dependency_links = ['http://www.blarg.net/%7Esteveha/pyfeed-0.7.4.tar.gz','http://www.blarg.net/%7Esteveha/xe-0.7.4.tar.gz'], |
42438e43104a
Plugin XEP-0277: first draft of microblogging over ip /!\ new dependencies added /!\
Goffi <goffi@goffi.org>
parents:
275
diff
changeset
|
210 install_requires=['twisted', 'progressbar', 'urwid', 'beautifulsoup', 'mercurial', 'urwid-satext','pyfeed','xe'], |
225 | 211 cmdclass=dict(install=custom_install), |
296 | 212 ) #XXX: The Mercurial dependency is just here to build the custom wokkel (with MUC branch), it must be removed |
373
a3aa4d046914
core: MANIFEST.in and setup.py cleaning
Goffi <goffi@goffi.org>
parents:
349
diff
changeset
|
213 # and replaced by wokkel as soon as MUC branch is officially available in wokkel main branch. |
235
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
214 # wxpython doesn't work, it's managed with preinstall_check |
7a2ef5fe4e8d
distutils: added preinstall_check hack + some tuning while testing
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
215 |