author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Fri, 29 Jan 2016 15:08:34 +0100 | |
changeset 11140 | fabcd1c6dcd1 |
parent 11057 | 0b59724cb3f2 |
child 11276 | 6eeb7abda47a |
permissions | -rw-r--r-- |
0 | 1 |
#!/usr/bin/env python |
6491
ee9a10b6620e
pylint option update
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6327
diff
changeset
|
2 |
# pylint: disable=W0142,W0403,W0404,W0613,W0622,W0622,W0704,R0904,C0103,E0611 |
0 | 3 |
# |
7879
9aae456abab5
[pylint] fix pylint detected errors and tweak it so that pylint -E will be much less verbose next time (+ update some copyrights on the way)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6836
diff
changeset
|
4 |
# copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
5 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
6 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
7 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
8 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
9 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
10 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
11 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
12 |
# any later version. |
0 | 13 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
14 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
0 | 15 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
16 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
17 |
# details. |
0 | 18 |
# |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
19 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
20 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
21 |
"""Generic Setup script, takes package info from __pkginfo__.py file |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
22 |
""" |
0 | 23 |
|
24 |
import os |
|
25 |
import sys |
|
26 |
import shutil |
|
11057
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
27 |
from os.path import dirname, exists, isdir, join |
0 | 28 |
|
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
29 |
try: |
5512 | 30 |
if os.environ.get('NO_SETUPTOOLS'): |
31 |
raise ImportError() # do as there is no setuptools |
|
32 |
from setuptools import setup |
|
33 |
from setuptools.command import install_lib |
|
34 |
USE_SETUPTOOLS = True |
|
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
35 |
except ImportError: |
5512 | 36 |
from distutils.core import setup |
37 |
from distutils.command import install_lib |
|
38 |
USE_SETUPTOOLS = False |
|
6508
38c2ff52cfca
[pkg] fix install_data import not present in setuptools
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6506
diff
changeset
|
39 |
from distutils.command import install_data |
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
40 |
|
11057
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
41 |
here = dirname(__file__) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
42 |
|
0 | 43 |
# import required features |
11057
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
44 |
pkginfo = join(here, 'cubicweb', '__pkginfo__.py') |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
45 |
__pkginfo__ = {} |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
46 |
with open(pkginfo) as f: |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
47 |
exec(f.read(), __pkginfo__) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
48 |
modname = __pkginfo__['modname'] |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
49 |
version = __pkginfo__['version'] |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
50 |
license = __pkginfo__['license'] |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
51 |
description = __pkginfo__['description'] |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
52 |
web = __pkginfo__['web'] |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
53 |
author = __pkginfo__['author'] |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
54 |
author_email = __pkginfo__['author_email'] |
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
55 |
|
10614 | 56 |
long_description = open('README').read() |
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
57 |
|
0 | 58 |
# import optional features |
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
59 |
if USE_SETUPTOOLS: |
5512 | 60 |
requires = {} |
6327
73413f2750af
[easy_install] stop installing recommends, user should install them manually if desired (avoid errors on optional packages blocking install)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5512
diff
changeset
|
61 |
for entry in ("__depends__",): # "__recommends__"): |
11057
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
62 |
requires.update(__pkginfo__.get(entry, {})) |
5512 | 63 |
install_requires = [("%s %s" % (d, v and v or "")).strip() |
10662
10942ed172de
[py3k] dict.iteritems → dict.items
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10614
diff
changeset
|
64 |
for d, v in requires.items()] |
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
65 |
else: |
5512 | 66 |
install_requires = [] |
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
67 |
|
11057
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
68 |
distname = __pkginfo__.get('distname', modname) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
69 |
scripts = __pkginfo__.get('scripts', ()) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
70 |
include_dirs = __pkginfo__.get('include_dirs', ()) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
71 |
data_files = __pkginfo__.get('data_files', None) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
72 |
subpackage_of = __pkginfo__.get('subpackage_of', None) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
73 |
ext_modules = __pkginfo__.get('ext_modules', None) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
74 |
package_data = __pkginfo__.get('package_data', {}) |
0 | 75 |
|
9276
ae3fd6f8da76
[packaging] setup.py: don't exclude skeleton/debian/* from being installed
Julien Cristau <julien.cristau@logilab.fr>
parents:
8695
diff
changeset
|
76 |
BASE_BLACKLIST = ('CVS', 'dist', 'build', '__buildlog') |
0 | 77 |
IGNORED_EXTENSIONS = ('.pyc', '.pyo', '.elc') |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
78 |
|
0 | 79 |
|
80 |
def ensure_scripts(linux_scripts): |
|
81 |
""" |
|
82 |
Creates the proper script names required for each platform |
|
83 |
(taken from 4Suite) |
|
84 |
""" |
|
85 |
from distutils import util |
|
86 |
if util.get_platform()[:3] == 'win': |
|
87 |
scripts_ = [script + '.bat' for script in linux_scripts] |
|
88 |
else: |
|
89 |
scripts_ = linux_scripts |
|
90 |
return scripts_ |
|
91 |
||
92 |
||
93 |
def get_packages(directory, prefix): |
|
94 |
"""return a list of subpackages for the given directory |
|
95 |
""" |
|
96 |
result = [] |
|
97 |
for package in os.listdir(directory): |
|
98 |
absfile = join(directory, package) |
|
99 |
if isdir(absfile): |
|
100 |
if exists(join(absfile, '__init__.py')) or \ |
|
101 |
package in ('test', 'tests'): |
|
102 |
if prefix: |
|
103 |
result.append('%s.%s' % (prefix, package)) |
|
104 |
else: |
|
105 |
result.append(package) |
|
106 |
result += get_packages(absfile, result[-1]) |
|
107 |
return result |
|
108 |
||
109 |
def export(from_dir, to_dir, |
|
110 |
blacklist=BASE_BLACKLIST, |
|
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
111 |
ignore_ext=IGNORED_EXTENSIONS, |
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
112 |
verbose=True): |
0 | 113 |
try: |
114 |
os.mkdir(to_dir) |
|
8695
358d8bed9626
[toward-py3k] rewrite to "except AnException as exc:" (part of #2711624)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
7896
diff
changeset
|
115 |
except OSError as ex: |
0 | 116 |
# file exists ? |
117 |
import errno |
|
118 |
if ex.errno != errno.EEXIST: |
|
119 |
raise |
|
11057
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
120 |
for dirpath, dirnames, filenames in os.walk(from_dir): |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
121 |
for norecurs in blacklist: |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
122 |
try: |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
123 |
dirnames.remove(norecurs) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
124 |
except ValueError: |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
125 |
pass |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
126 |
for dirname in dirnames: |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
127 |
dest = join(to_dir, dirname) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
128 |
if not exists(dest): |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
129 |
os.mkdir(dest) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
130 |
for filename in filenames: |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
131 |
# don't include binary files |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
132 |
src = join(dirpath, filename) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
133 |
dest = to_dir + src[len(from_dir):] |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
134 |
if filename[-4:] in ignore_ext: |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
135 |
continue |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
136 |
if filename[-1] == '~': |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
137 |
continue |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
138 |
if exists(dest): |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
139 |
os.remove(dest) |
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
140 |
shutil.copy2(src, dest) |
0 | 141 |
|
142 |
||
143 |
EMPTY_FILE = '"""generated file, don\'t modify or your data will be lost"""\n' |
|
144 |
||
145 |
class MyInstallLib(install_lib.install_lib): |
|
146 |
"""extend install_lib command to handle package __init__.py and |
|
147 |
include_dirs variable if necessary |
|
148 |
""" |
|
149 |
def run(self): |
|
150 |
"""overridden from install_lib class""" |
|
151 |
install_lib.install_lib.run(self) |
|
152 |
# create Products.__init__.py if needed |
|
153 |
if subpackage_of: |
|
154 |
product_init = join(self.install_dir, subpackage_of, '__init__.py') |
|
155 |
if not exists(product_init): |
|
156 |
self.announce('creating %s' % product_init) |
|
157 |
stream = open(product_init, 'w') |
|
158 |
stream.write(EMPTY_FILE) |
|
159 |
stream.close() |
|
160 |
# manually install included directories if any |
|
161 |
if include_dirs: |
|
162 |
if subpackage_of: |
|
163 |
base = join(subpackage_of, modname) |
|
164 |
else: |
|
165 |
base = modname |
|
166 |
for directory in include_dirs: |
|
167 |
dest = join(self.install_dir, base, directory) |
|
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
168 |
export(directory, dest, verbose=False) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
169 |
|
6517
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
170 |
# write required share/cubicweb/cubes/__init__.py |
6506
c1661ea815dc
[packaging] add a __init__.py to cubes directory when installing data
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6327
diff
changeset
|
171 |
class MyInstallData(install_data.install_data): |
6517
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
172 |
"""A class That manages data files installation""" |
6506
c1661ea815dc
[packaging] add a __init__.py to cubes directory when installing data
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6327
diff
changeset
|
173 |
def run(self): |
c1661ea815dc
[packaging] add a __init__.py to cubes directory when installing data
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6327
diff
changeset
|
174 |
"""overridden from install_data class""" |
c1661ea815dc
[packaging] add a __init__.py to cubes directory when installing data
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6327
diff
changeset
|
175 |
install_data.install_data.run(self) |
c1661ea815dc
[packaging] add a __init__.py to cubes directory when installing data
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6327
diff
changeset
|
176 |
path = join(self.install_dir, 'share', 'cubicweb', 'cubes', '__init__.py') |
c1661ea815dc
[packaging] add a __init__.py to cubes directory when installing data
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6327
diff
changeset
|
177 |
ini = open(path, 'w') |
c1661ea815dc
[packaging] add a __init__.py to cubes directory when installing data
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6327
diff
changeset
|
178 |
ini.write('# Cubicweb cubes directory\n') |
c1661ea815dc
[packaging] add a __init__.py to cubes directory when installing data
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6327
diff
changeset
|
179 |
ini.close() |
c1661ea815dc
[packaging] add a __init__.py to cubes directory when installing data
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6327
diff
changeset
|
180 |
|
6517
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
181 |
# re-enable copying data files in sys.prefix |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
182 |
if USE_SETUPTOOLS: |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
183 |
# overwrite MyInstallData to use sys.prefix instead of the egg directory |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
184 |
MyInstallMoreData = MyInstallData |
7879
9aae456abab5
[pylint] fix pylint detected errors and tweak it so that pylint -E will be much less verbose next time (+ update some copyrights on the way)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6836
diff
changeset
|
185 |
class MyInstallData(MyInstallMoreData): # pylint: disable=E0102 |
6517
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
186 |
"""A class that manages data files installation""" |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
187 |
def run(self): |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
188 |
_old_install_dir = self.install_dir |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
189 |
if self.install_dir.endswith('egg'): |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
190 |
self.install_dir = sys.prefix |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
191 |
MyInstallMoreData.run(self) |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
192 |
self.install_dir = _old_install_dir |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
193 |
try: |
9516
6e2244784b7d
Fix typo in a setup.py comment
Dimitri Papadopoulos <dimitri.papadopoulos@cea.fr>
parents:
9276
diff
changeset
|
194 |
import setuptools.command.easy_install # only if easy_install available |
6517
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
195 |
# monkey patch: Crack SandboxViolation verification |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
196 |
from setuptools.sandbox import DirectorySandbox as DS |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
197 |
old_ok = DS._ok |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
198 |
def _ok(self, path): |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
199 |
"""Return True if ``path`` can be written during installation.""" |
6836
fb3633142d8f
[pkg] fix small bug appearing on Windows
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6537
diff
changeset
|
200 |
out = old_ok(self, path) # here for side effect from setuptools |
6517
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
201 |
realpath = os.path.normcase(os.path.realpath(path)) |
6836
fb3633142d8f
[pkg] fix small bug appearing on Windows
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6537
diff
changeset
|
202 |
allowed_path = os.path.normcase(sys.prefix) |
fb3633142d8f
[pkg] fix small bug appearing on Windows
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6537
diff
changeset
|
203 |
if realpath.startswith(allowed_path): |
6517
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
204 |
out = True |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
205 |
return out |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
206 |
DS._ok = _ok |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
207 |
except ImportError: |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
208 |
pass |
6506
c1661ea815dc
[packaging] add a __init__.py to cubes directory when installing data
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
6327
diff
changeset
|
209 |
|
0 | 210 |
def install(**kwargs): |
211 |
"""setup entry point""" |
|
5353
cb8ac7263f8a
[packaging] fix setup.py for use w/ lgp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5329
diff
changeset
|
212 |
if USE_SETUPTOOLS: |
cb8ac7263f8a
[packaging] fix setup.py for use w/ lgp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5329
diff
changeset
|
213 |
if '--force-manifest' in sys.argv: |
cb8ac7263f8a
[packaging] fix setup.py for use w/ lgp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5329
diff
changeset
|
214 |
sys.argv.remove('--force-manifest') |
cb8ac7263f8a
[packaging] fix setup.py for use w/ lgp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5329
diff
changeset
|
215 |
# install-layout option was introduced in 2.5.3-1~exp1 |
cb8ac7263f8a
[packaging] fix setup.py for use w/ lgp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5329
diff
changeset
|
216 |
elif sys.version_info < (2, 5, 4) and '--install-layout=deb' in sys.argv: |
cb8ac7263f8a
[packaging] fix setup.py for use w/ lgp
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5329
diff
changeset
|
217 |
sys.argv.remove('--install-layout=deb') |
0 | 218 |
if subpackage_of: |
219 |
package = subpackage_of + '.' + modname |
|
220 |
kwargs['package_dir'] = {package : '.'} |
|
221 |
packages = [package] + get_packages(os.getcwd(), package) |
|
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
222 |
if USE_SETUPTOOLS: |
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
223 |
kwargs['namespace_packages'] = [subpackage_of] |
0 | 224 |
else: |
11057
0b59724cb3f2
Reorganize source tree to have a "cubicweb" top-level package
Denis Laxalde <denis.laxalde@logilab.fr>
parents:
10662
diff
changeset
|
225 |
packages = [modname] + get_packages(join(here, modname), modname) |
5329
a8cd0570e3d6
[packaging] setup.py cleanups
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5024
diff
changeset
|
226 |
if USE_SETUPTOOLS: |
5512 | 227 |
kwargs['install_requires'] = install_requires |
6534
eb8dd7b0bd9d
[pkg] no zipped egg
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6517
diff
changeset
|
228 |
kwargs['zip_safe'] = False |
0 | 229 |
kwargs['packages'] = packages |
6516
6b2e1e8d3a22
[pkg] use argument *package_data*
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6508
diff
changeset
|
230 |
kwargs['package_data'] = package_data |
5024
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
231 |
return setup(name=distname, version=version, license=license, url=web, |
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
232 |
description=description, long_description=long_description, |
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
233 |
author=author, author_email=author_email, |
9e718abe3fde
add egg support with dependencies auto-installation
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
4721
diff
changeset
|
234 |
scripts=ensure_scripts(scripts), data_files=data_files, |
0 | 235 |
ext_modules=ext_modules, |
6517
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
236 |
cmdclass={'install_lib': MyInstallLib, |
c991ad161d8f
[pkg] force copying data files in sys.path
Alain Leufroy <alain.leufroy@logilab.fr>
parents:
6516
diff
changeset
|
237 |
'install_data': MyInstallData}, |
0 | 238 |
**kwargs |
239 |
) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
240 |
|
0 | 241 |
if __name__ == '__main__' : |
242 |
install() |