author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 28 Feb 2011 14:14:19 +0100 | |
branch | stable |
changeset 7032 | b712477ae286 |
parent 7003 | 6eeed1e9782c |
child 7758 | 1b8b83ff9f6b |
permissions | -rw-r--r-- |
7003
6eeed1e9782c
[skel] avoid pylint warning for newly generated cube
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
6828
diff
changeset
|
1 |
# pylint: disable=W0622 |
0 | 2 |
"""%(distname)s application packaging information""" |
3 |
||
548
195a0065aaae
missing quotes #102063
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
538
diff
changeset
|
4 |
modname = '%(cubename)s' |
0 | 5 |
distname = '%(distname)s' |
6 |
||
7 |
numversion = (0, 1, 0) |
|
8 |
version = '.'.join(str(num) for num in numversion) |
|
9 |
||
5184
955ee1b24756
[c-c newcube] #1192: simpler cubicweb-ctl newcube, and more
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5163
diff
changeset
|
10 |
license = '%(license)s' |
458
99712f0d5472
fix syntax in skeleton's __pkginfo__.py
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
365
diff
changeset
|
11 |
author = '%(author)s' |
99712f0d5472
fix syntax in skeleton's __pkginfo__.py
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
365
diff
changeset
|
12 |
author_email = '%(author-email)s' |
6828
b022065b4376
[skeleton] nicer pkginfo organization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5536
diff
changeset
|
13 |
description = '%(shortdesc)s' |
b022065b4376
[skeleton] nicer pkginfo organization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5536
diff
changeset
|
14 |
web = 'http://www.cubicweb.org/project/%%s' %% distname |
0 | 15 |
|
6828
b022065b4376
[skeleton] nicer pkginfo organization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5536
diff
changeset
|
16 |
__depends__ = %(dependencies)s |
b022065b4376
[skeleton] nicer pkginfo organization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5536
diff
changeset
|
17 |
__recommends__ = {} |
0 | 18 |
|
2157 | 19 |
|
20 |
from os import listdir as _listdir |
|
4214
91887e8cf50c
[skeleton] remove unused os.path.dirname import, use dname instead of dirname as an additional safetly belt
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3492
diff
changeset
|
21 |
from os.path import join, isdir, exists |
2157 | 22 |
from glob import glob |
23 |
||
24 |
THIS_CUBE_DIR = join('share', 'cubicweb', 'cubes', modname) |
|
0 | 25 |
|
26 |
def listdir(dirpath): |
|
27 |
return [join(dirpath, fname) for fname in _listdir(dirpath) |
|
28 |
if fname[0] != '.' and not fname.endswith('.pyc') |
|
1438
21b8f3961e6f
[distutils] don't consider directories as data files
Julien Jehannet <julien.jehannet@logilab.fr>
parents:
548
diff
changeset
|
29 |
and not fname.endswith('~') |
1916
5c94f776e4f6
[skeleton] fix SyntaxError in __pkginfo__.py (looks like a copy/paste error from vim)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1438
diff
changeset
|
30 |
and not isdir(join(dirpath, fname))] |
0 | 31 |
|
2367
6ba269240f3b
[skeleton] the new implementation of data_files will never raise a OSError
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2157
diff
changeset
|
32 |
data_files = [ |
6ba269240f3b
[skeleton] the new implementation of data_files will never raise a OSError
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2157
diff
changeset
|
33 |
# common files |
6ba269240f3b
[skeleton] the new implementation of data_files will never raise a OSError
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2157
diff
changeset
|
34 |
[THIS_CUBE_DIR, [fname for fname in glob('*.py') if fname != 'setup.py']], |
6ba269240f3b
[skeleton] the new implementation of data_files will never raise a OSError
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2157
diff
changeset
|
35 |
] |
6ba269240f3b
[skeleton] the new implementation of data_files will never raise a OSError
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2157
diff
changeset
|
36 |
# check for possible extended cube layout |
5536
b7fba311e8d0
[skel] enable wdoc support in new cubes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5347
diff
changeset
|
37 |
for dname in ('entities', 'views', 'sobjects', 'hooks', 'schema', 'data', 'wdoc', 'i18n', 'migration'): |
4214
91887e8cf50c
[skeleton] remove unused os.path.dirname import, use dname instead of dirname as an additional safetly belt
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3492
diff
changeset
|
38 |
if isdir(dname): |
91887e8cf50c
[skeleton] remove unused os.path.dirname import, use dname instead of dirname as an additional safetly belt
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3492
diff
changeset
|
39 |
data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)]) |
2367
6ba269240f3b
[skeleton] the new implementation of data_files will never raise a OSError
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2157
diff
changeset
|
40 |
# Note: here, you'll need to add subdirectories if you want |
6ba269240f3b
[skeleton] the new implementation of data_files will never raise a OSError
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
2157
diff
changeset
|
41 |
# them to be included in the debian package |
0 | 42 |