Mercurial > libervia-backend
annotate setup.py @ 232:0cd5b3c4513f
Distutils: added custom wokkel checking/building
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 06 Jan 2011 18:48:56 +0100 |
parents | b25cbec73c1e |
children | 6a37bc1b0b8c |
rev | line source |
---|---|
225 | 1 #!/usr/bin/env python |
2 # -*- coding: utf-8 -*- | |
3 | |
230
b25cbec73c1e
distutils: removes build and dist from manifest's prune
Goffi <goffi@goffi.org>
parents:
227
diff
changeset
|
4 from distribute_setup import use_setuptools |
b25cbec73c1e
distutils: removes build and dist from manifest's prune
Goffi <goffi@goffi.org>
parents:
227
diff
changeset
|
5 use_setuptools() |
b25cbec73c1e
distutils: removes build and dist from manifest's prune
Goffi <goffi@goffi.org>
parents:
227
diff
changeset
|
6 from setuptools.command.install import install |
b25cbec73c1e
distutils: removes build and dist from manifest's prune
Goffi <goffi@goffi.org>
parents:
227
diff
changeset
|
7 from setuptools import setup |
225 | 8 from distutils.file_util import copy_file |
9 import os,sys,subprocess | |
10 from stat import ST_MODE | |
11 from glob import glob | |
12 | |
13 NAME = 'sat' | |
14 LAUNCH_DAEMON_COMMAND = 'sat' | |
15 | |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
16 class MercurialException(Exception): |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
17 pass |
225 | 18 |
19 class custom_install(install): | |
20 | |
21 def custom_auto_options(self): | |
22 """Change options for twistd in the shell script | |
23 Mainly change the paths""" | |
24 sh_buffer = "" | |
25 run_dir = os.path.dirname(self.sh_script_path) | |
26 with open(self.sh_script_path,'r') as sh_file: | |
27 for ori_line in sh_file: | |
28 if ori_line.startswith('DAEMON='): | |
29 dest_line = 'DAEMON=""\n' #we want to launch sat as a daemon | |
30 elif ori_line.startswith('TAP_PATH='): | |
31 dest_line = 'TAP_PATH="%s/"\n' % run_dir | |
32 else: | |
33 dest_line = ori_line | |
34 sh_buffer += dest_line | |
35 | |
36 with open(self.sh_script_path,'w') as sh_file: | |
37 sh_file.write(sh_buffer) | |
38 | |
39 | |
40 def custom_create_links(self): | |
41 """Create symbolic links to executables""" | |
42 #the script which launch the daemon | |
43 links = [(self.sh_script_path,LAUNCH_DAEMON_COMMAND),] | |
44 for source,dest in links: | |
45 dest_name, copied = copy_file(source, os.path.join(self.install_scripts, dest), link='sym') | |
46 assert (copied) | |
47 #we change the perm in the same way as in the original install_scripts | |
48 mode = ((os.stat(dest_name)[ST_MODE]) | 0555) & 07777 | |
49 os.chmod(dest_name, mode) | |
50 | |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
51 def _custom_wokkel_installed(self): |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
52 """Try to import muc from custom wokkel build |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
53 @return: True if successful""" |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
54 try: |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
55 __import__('wokkel.muc') |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
56 except: |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
57 return False |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
58 return True |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
59 |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
60 def custom_wokkel_requirement(self): |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
61 """Test if the custom wokkel is present, else get and build it""" |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
62 if not self._custom_wokkel_installed(): |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
63 print ('Custom wokkel is not present, building it') |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
64 import tempfile |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
65 ori_path = os.getcwd() |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
66 work_path = tempfile.mkdtemp() |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
67 os.chdir(work_path) |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
68 #we are now in a temp dir, we can get the repositories |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
69 commands = ['/usr/bin/hg clone http://hg.ik.nu/wokkel wokkel', |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
70 'cd wokkel', |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
71 '/usr/bin/hg pull -f http://hg.ik.nu/ralphm/wokkel-muc-client-support-24-2', |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
72 '/usr/bin/hg merge wokkel-muc-client-support-24', |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
73 '/usr/bin/hg commit -m "Merged wokkel\'s MUC branch"', |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
74 '%s setup.py install' % sys.executable] |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
75 for command in commands: |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
76 ret = subprocess.call(command, shell=True) |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
77 if ret!=0: |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
78 os.chdir(ori_path) |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
79 print ("ERROR while building/installing custom wokkel") |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
80 print ('Error happened when executing [%s]' % command) |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
81 raise MercurialException |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
82 os.chdir(ori_path) |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
83 print "Custom wokkel builded and installed, removing temporary files" |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
84 import shutil |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
85 shutil.rmtree(work_path) |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
86 print "done" |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
87 else: |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
88 print "Custom wokkel already installed" |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
89 |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
90 |
225 | 91 def run(self): |
92 install.run(self) | |
93 print ('running post installation stuff') | |
94 self.sh_script_path = os.path.join(self.install_lib,'sat','sat.sh') | |
95 self.primitivus_path = os.path.join(self.install_lib,'sat_frontends','primitivus') | |
96 self.custom_auto_options() | |
97 self.custom_create_links() | |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
98 self.custom_wokkel_requirement() |
225 | 99 |
100 | |
101 | |
102 setup(name=NAME, | |
103 version='0.1.0', | |
104 description=u'Salut à Toi multi-frontend XMPP client', | |
105 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. ', | |
106 author='Goffi (Jérôme Poisson)', | |
107 author_email='goffi@goffi.org', | |
108 url='http://wiki.goffi.org/wiki/Salut_%C3%A0_Toi', | |
109 classifiers=['Development Status :: 3 - Alpha', | |
110 'Environment :: Console', | |
111 'Environment :: X11 Applications :: GTK', | |
112 'Framework :: Twisted', | |
113 'License :: OSI Approved :: GNU General Public License (GPL)', | |
114 'Operating System :: POSIX :: Linux', | |
115 'Topic :: Communications :: Chat'], | |
116 package_dir = {'sat':'src', 'sat_frontends':'frontends/src'}, | |
117 packages=['sat','sat.tools','sat.bridge', 'sat.plugins', | |
118 'sat_frontends', 'sat_frontends.bridge', 'sat_frontends.quick_frontend', | |
227 | 119 'sat_frontends.primitivus', 'sat_frontends.wix'], |
120 package_data = {'sat': ['sat.tac','sat.sh'], | |
121 'sat_frontends': ['wix/COPYING','wix/images/*png','wix/images/cards/*','wix/images/crystal/*']}, | |
225 | 122 data_files=[(os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['i18n/fr/LC_MESSAGES/sat.mo']), |
123 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/i18n/fr/LC_MESSAGES/sat_frontend.mo']), | |
124 (os.path.join(sys.prefix,'share/locale/fr/LC_MESSAGES'), ['frontends/src/jp/i18n/fr/LC_MESSAGES/jp.mo']), | |
227 | 125 ('share/doc/%s' % NAME, ['CHANGELOG', 'COPYING', 'INSTALL', 'README', 'README4TRANSLATORS']), |
126 ('share/doc/%s/misc' % NAME, ['frontends/src/wix/images/split_card.sh']), | |
127 ], | |
128 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
|
129 zip_safe=False, |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
130 install_requires=['twisted', 'progressbar', 'wxPython', 'urwid', 'BeautifulSoup','Mercurial'], |
225 | 131 cmdclass=dict(install=custom_install), |
232
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
132 ) #XXX: The Mercurial dependecy is just here to build the custom wokkel (with MUC branch), it must be removed |
0cd5b3c4513f
Distutils: added custom wokkel checking/building
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
133 # and replace by wokkel as soon as MUC branch is officially available in wokkel main branch. |