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
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
modname = 'comment' modname = 'comment'
distname = "cubicweb-%s" % modname distname = "cubicweb-%s" % modname
numversion = (1, 6, 3) numversion = (1, 7, 0)
version = '.'.join(str(num) for num in numversion) version = '.'.join(str(num) for num in numversion)
license = 'LGPL' license = 'LGPL'
...@@ -8,7 +8,6 @@ ...@@ -8,7 +8,6 @@
version = '.'.join(str(num) for num in numversion) version = '.'.join(str(num) for num in numversion)
license = 'LGPL' license = 'LGPL'
author = "Logilab" author = "Logilab"
author_email = "contact@logilab.fr" author_email = "contact@logilab.fr"
web = 'http://www.cubicweb.org/project/%s' % distname web = 'http://www.cubicweb.org/project/%s' % distname
...@@ -12,5 +11,4 @@ ...@@ -12,5 +11,4 @@
author = "Logilab" author = "Logilab"
author_email = "contact@logilab.fr" author_email = "contact@logilab.fr"
web = 'http://www.cubicweb.org/project/%s' % distname web = 'http://www.cubicweb.org/project/%s' % distname
description = "commenting system for the CubicWeb framework" description = "commenting system for the CubicWeb framework"
...@@ -16,6 +14,4 @@ ...@@ -16,6 +14,4 @@
description = "commenting system for the CubicWeb framework" description = "commenting system for the CubicWeb framework"
short_desc = description # XXX cw < 3.8 bw compat
classifiers = [ classifiers = [
'Environment :: Web Environment', 'Environment :: Web Environment',
'Framework :: CubicWeb', 'Framework :: CubicWeb',
...@@ -25,6 +21,7 @@ ...@@ -25,6 +21,7 @@
__depends__ = {'cubicweb': '>= 3.9.0'} __depends__ = {'cubicweb': '>= 3.9.0'}
# package ###
# packaging ###
from os import listdir as _listdir from os import listdir as _listdir
...@@ -29,6 +26,6 @@ ...@@ -29,6 +26,6 @@
from os import listdir as _listdir from os import listdir as _listdir
from os.path import join, isdir, exists from os.path import join, isdir
from glob import glob from glob import glob
THIS_CUBE_DIR = join('share', 'cubicweb', 'cubes', modname) THIS_CUBE_DIR = join('share', 'cubicweb', 'cubes', modname)
...@@ -44,6 +41,8 @@ ...@@ -44,6 +41,8 @@
[THIS_CUBE_DIR, [fname for fname in glob('*.py') if fname != 'setup.py']], [THIS_CUBE_DIR, [fname for fname in glob('*.py') if fname != 'setup.py']],
] ]
# check for possible extended cube layout # check for possible extended cube layout
for dname in ('entities', 'views', 'sobjects', 'hooks', 'schema', 'data', 'i18n', 'migration'): for dirname in ('entities', 'views', 'sobjects', 'hooks', 'schema', 'data', 'i18n', 'migration', 'wdoc'):
if isdir(dname): if isdir(dirname):
data_files.append([join(THIS_CUBE_DIR, dname), listdir(dname)]) 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 cubicweb-comment (1.6.3-1) unstable; urgency=low
* new upstream release * 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