author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Fri, 20 Nov 2009 19:35:54 +0100 | |
changeset 3890 | d7a270f50f54 |
parent 3777 | 3ef8cdb5fb1c |
parent 3787 | 82bb2c7f083b |
child 3998 | 94cc7cad3d2d |
permissions | -rw-r--r-- |
0 | 1 |
# pylint: disable-msg=W0622,C0103 |
2 |
"""cubicweb global packaging information for the cubicweb knowledge management |
|
3 |
software |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1952
diff
changeset
|
4 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 5 |
""" |
6 |
||
7 |
distname = "cubicweb" |
|
8 |
modname = "cubicweb" |
|
9 |
||
3769 | 10 |
numversion = (3, 5, 5) |
0 | 11 |
version = '.'.join(str(num) for num in numversion) |
12 |
||
3787
82bb2c7f083b
C - fix typo. make `lgp check` happy.
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
3769
diff
changeset
|
13 |
license = 'LGPL' |
858
e6ae125d5903
reorganize debian packages (Closes: #1168)
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
482
diff
changeset
|
14 |
copyright = '''Copyright (c) 2003-2009 LOGILAB S.A. (Paris, FRANCE). |
0 | 15 |
http://www.logilab.fr/ -- mailto:contact@logilab.fr''' |
16 |
||
17 |
author = "Logilab" |
|
18 |
author_email = "contact@logilab.fr" |
|
19 |
||
20 |
short_desc = "a repository of entities / relations for knowledge management" |
|
21 |
long_desc = """CubicWeb is a entities / relations based knowledge management system |
|
22 |
developped at Logilab. |
|
23 |
||
24 |
This package contains: |
|
25 |
* a repository server |
|
26 |
* a RQL command line client to the repository |
|
27 |
* an adaptative modpython interface to the server |
|
28 |
* a bunch of other management tools |
|
29 |
""" |
|
30 |
||
858
e6ae125d5903
reorganize debian packages (Closes: #1168)
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
482
diff
changeset
|
31 |
web = 'http://www.cubicweb.org' |
e6ae125d5903
reorganize debian packages (Closes: #1168)
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
482
diff
changeset
|
32 |
ftp = 'ftp://ftp.logilab.org/pub/cubicweb' |
e6ae125d5903
reorganize debian packages (Closes: #1168)
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
482
diff
changeset
|
33 |
pyversions = ['2.4', '2.5'] |
0 | 34 |
|
2419 | 35 |
classifiers = [ |
36 |
'Environment :: Web Environment', |
|
37 |
'Framework :: CubicWeb', |
|
38 |
'Programming Language :: Python', |
|
39 |
'Programming Language :: JavaScript', |
|
40 |
] |
|
41 |
||
0 | 42 |
|
858
e6ae125d5903
reorganize debian packages (Closes: #1168)
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
482
diff
changeset
|
43 |
import sys |
0 | 44 |
from os import listdir, environ |
45 |
from os.path import join, isdir |
|
46 |
import glob |
|
47 |
||
48 |
scripts = [s for s in glob.glob(join('bin', 'cubicweb-*')) |
|
49 |
if not s.endswith('.bat')] |
|
265
97361ddaf342
fix include_dirs
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
264
diff
changeset
|
50 |
include_dirs = [join('test', 'data'), |
97361ddaf342
fix include_dirs
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
264
diff
changeset
|
51 |
join('common', 'test', 'data'), |
0 | 52 |
join('server', 'test', 'data'), |
53 |
join('web', 'test', 'data'), |
|
265
97361ddaf342
fix include_dirs
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
264
diff
changeset
|
54 |
join('devtools', 'test', 'data'), |
97361ddaf342
fix include_dirs
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
264
diff
changeset
|
55 |
'skeleton'] |
0 | 56 |
|
57 |
||
58 |
entities_dir = 'entities' |
|
59 |
schema_dir = 'schemas' |
|
60 |
sobjects_dir = 'sobjects' |
|
61 |
server_migration_dir = join('misc', 'migration') |
|
62 |
data_dir = join('web', 'data') |
|
63 |
wdoc_dir = join('web', 'wdoc') |
|
64 |
wdocimages_dir = join(wdoc_dir, 'images') |
|
65 |
views_dir = join('web', 'views') |
|
66 |
i18n_dir = 'i18n' |
|
67 |
||
68 |
if environ.get('APYCOT_ROOT'): |
|
69 |
# --home install |
|
70 |
pydir = 'python' |
|
71 |
else: |
|
858
e6ae125d5903
reorganize debian packages (Closes: #1168)
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
482
diff
changeset
|
72 |
python_version = '.'.join(str(num) for num in sys.version_info[0:2]) |
e6ae125d5903
reorganize debian packages (Closes: #1168)
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
482
diff
changeset
|
73 |
pydir = join('python' + python_version, 'site-packages') |
264
6eb0725d509d
packaging fix: distribute skeleton
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
259
diff
changeset
|
74 |
|
0 | 75 |
try: |
76 |
data_files = [ |
|
77 |
# common data |
|
78 |
#[join('share', 'cubicweb', 'entities'), |
|
79 |
# [join(entities_dir, filename) for filename in listdir(entities_dir)]], |
|
80 |
# server data |
|
81 |
[join('share', 'cubicweb', 'schemas'), |
|
82 |
[join(schema_dir, filename) for filename in listdir(schema_dir)]], |
|
83 |
#[join('share', 'cubicweb', 'sobjects'), |
|
84 |
# [join(sobjects_dir, filename) for filename in listdir(sobjects_dir)]], |
|
85 |
[join('share', 'cubicweb', 'migration'), |
|
86 |
[join(server_migration_dir, filename) |
|
87 |
for filename in listdir(server_migration_dir)]], |
|
88 |
# web data |
|
89 |
[join('share', 'cubicweb', 'cubes', 'shared', 'data'), |
|
90 |
[join(data_dir, fname) for fname in listdir(data_dir) if not isdir(join(data_dir, fname))]], |
|
91 |
[join('share', 'cubicweb', 'cubes', 'shared', 'data', 'timeline'), |
|
92 |
[join(data_dir, 'timeline', fname) for fname in listdir(join(data_dir, 'timeline'))]], |
|
93 |
[join('share', 'cubicweb', 'cubes', 'shared', 'wdoc'), |
|
94 |
[join(wdoc_dir, fname) for fname in listdir(wdoc_dir) if not isdir(join(wdoc_dir, fname))]], |
|
95 |
[join('share', 'cubicweb', 'cubes', 'shared', 'wdoc', 'images'), |
|
96 |
[join(wdocimages_dir, fname) for fname in listdir(wdocimages_dir)]], |
|
97 |
# XXX: .pt install should be handled properly in a near future version |
|
98 |
[join('lib', pydir, 'cubicweb', 'web', 'views'), |
|
99 |
[join(views_dir, fname) for fname in listdir(views_dir) if fname.endswith('.pt')]], |
|
100 |
[join('share', 'cubicweb', 'cubes', 'shared', 'i18n'), |
|
101 |
[join(i18n_dir, fname) for fname in listdir(i18n_dir)]], |
|
264
6eb0725d509d
packaging fix: distribute skeleton
Sylvain Thenault <sylvain.thenault@logilab.fr>
parents:
259
diff
changeset
|
102 |
# skeleton |
0 | 103 |
] |
104 |
except OSError: |
|
105 |
# we are in an installed directory, don't care about this |
|
106 |
pass |