Skip to content
Snippets Groups Projects
Commit 731550df8a31 authored by Sylvain Thénault's avatar Sylvain Thénault
Browse files

1.7

parent 033f6dbd78ff
No related branches found
Tags cubicweb-comment-version-1.7.0
No related merge requests found
......@@ -4,7 +4,7 @@
modname = 'comment'
distname = "cubicweb-%s" % modname
numversion = (1, 6, 3)
numversion = (1, 7, 0)
version = '.'.join(str(num) for num in numversion)
license = 'LGPL'
......@@ -8,7 +8,6 @@
version = '.'.join(str(num) for num in numversion)
license = 'LGPL'
author = "Logilab"
author_email = "contact@logilab.fr"
web = 'http://www.cubicweb.org/project/%s' % distname
......@@ -12,5 +11,4 @@
author = "Logilab"
author_email = "contact@logilab.fr"
web = 'http://www.cubicweb.org/project/%s' % distname
description = "commenting system for the CubicWeb framework"
......@@ -16,6 +14,4 @@
description = "commenting system for the CubicWeb framework"
short_desc = description # XXX cw < 3.8 bw compat
classifiers = [
'Environment :: Web Environment',
'Framework :: CubicWeb',
......@@ -25,6 +21,7 @@
__depends__ = {'cubicweb': '>= 3.9.0'}
# package ###
# packaging ###
from os import listdir as _listdir
......@@ -29,6 +26,6 @@
from os import listdir as _listdir
from os.path import join, isdir, exists
from os.path import join, isdir
from glob import glob
THIS_CUBE_DIR = join('share', 'cubicweb', 'cubes', modname)
......@@ -44,6 +41,8 @@
[THIS_CUBE_DIR, [fname for fname in glob('*.py') if fname != 'setup.py']],
]
# check for possible extended cube layout
for dname in ('entities', 'views', 'sobjects', 'hooks', 'schema', 'data', 'i18n', 'migration'):
if isdir(dname):
data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)])
for dirname in ('entities', 'views', 'sobjects', 'hooks', 'schema', 'data', 'i18n', 'migration', 'wdoc'):
if isdir(dirname):
data_files.append([join(THIS_CUBE_DIR, dirname), listdir(dirname)])
# Note: here, you'll need to add subdirectories if you want
# them to be included in the debian package
cubicweb-comment (1.7.0-1) unstable; urgency=low
* new upstream release
-- Sylvain Thénault <sylvain.thenault@logilab.fr> Wed, 07 Jul 2010 11:10:28 +0200
cubicweb-comment (1.6.3-1) unstable; urgency=low
* new upstream release
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment