# HG changeset patch
# User Nicolas Chauvat <nicolas.chauvat@logilab.fr>
# Date 1251735745 -7200
#      Mon Aug 31 18:22:25 2009 +0200
# Branch stable
# Node ID c76ff1c52a2241a152dc00fed000ed50d42eecb3
# Parent  e30d5c143b77e7b3614c96d2c65b406624d2a9a0
P [packaging] describe dependencies in pkginfo

diff --git a/__init__.py b/__init__.py
--- a/__init__.py
+++ b/__init__.py
@@ -1,1 +1,1 @@
-"""package __init__"""
+"""cubicweb comment"""
diff --git a/__pkginfo__.py b/__pkginfo__.py
--- a/__pkginfo__.py
+++ b/__pkginfo__.py
@@ -1,10 +1,10 @@
 # pylint: disable-msg=W0622
 """cubicweb-comment packaging information"""
 
-distname = "cubicweb-comment"
-modname = distname.split('-', 1)[1]
+modname = 'comment'
+distname = "cubicweb-%s" % modname
 
-numversion = (1, 4, 0)
+numversion = (1, 4, 1)
 version = '.'.join(str(num) for num in numversion)
 
 license = 'LGPL'
@@ -13,15 +13,12 @@
 
 author = "Logilab"
 author_email = "contact@logilab.fr"
-web = ''
+web = 'http://www.cubicweb.org/project/%s' % distname
 
-short_desc = "Comment system for the CubicWeb framework"
-long_desc = """CubicWeb is a entities / relations bases knowledge management system
-developped at Logilab.
-.
-This package provides a system allowing comments threads on content of cubicweb 
-applications.
-.
+short_desc = "comment component for the CubicWeb framework"
+long_desc = """This CubicWeb component provides threadable comments.
+
+CubicWeb is a semantic web framework, see http://www.cubicweb.org
 """
 
 from os import listdir
@@ -48,7 +45,9 @@
 
 cube_eid = 20316
 # used packages
-__use__ = ()
+__depends_cubes__ = {}
+__depends__ = {'cubicweb': '>= 3.2.0'}
+__use__ = tuple(__depends_cubes__)
 classifiers = [
            'Environment :: Web Environment',
            'Framework :: CubicWeb',
diff --git a/debian/changelog b/debian/changelog
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+cubicweb-comment (1.4.1-1) unstable; urgency=low
+
+  * new upstream release
+
+ -- Nicolas Chauvat <nicolas.chauvat@logilab.fr>  Wed, 27 May 2009 11:41:55 +0200
+
 cubicweb-comment (1.4.0-1) unstable; urgency=low
 
   * new upstream release depending on cubicweb 3.2
diff --git a/debian/control b/debian/control
--- a/debian/control
+++ b/debian/control
@@ -2,17 +2,18 @@
 Section: web
 Priority: optional
 Maintainer: Logilab Packaging Team <contact@logilab.fr>
-Uploaders: Sylvain Thenault <sylvain.thenault@logilab.fr> 
-Build-Depends: debhelper (>= 5.0.37.1), python (>=2.3.5-7), python-dev (>=2.3.5-7)
+Uploaders: Sylvain Thenault <sylvain.thenault@logilab.fr>,
+           Nicolas Chauvat <nicolas.chauvat@logilab.fr>
+Build-Depends: debhelper (>= 5.0.37.1), python (>=2.4), python-dev (>=2.4)
 Standards-Version: 3.8.0
+Homepage: http://www.cubicweb.org/project/cubicweb-comment
 
 Package: cubicweb-comment
 Architecture: all
 Conflicts: erudi-comment, erudi-comment-server, erudi-comment-client, erudi-comment-comp
 Replaces: erudi-comment, erudi-comment-server, erudi-comment-client, erudi-comment-comp
 Depends: cubicweb-common (>= 3.2.0)
-Description: Comment system for the CubicWeb framework
- CubicWeb is a semantic web application framework.
+Description: comment component for the CubicWeb framework
+ This CubicWeb component provides threadable comments.
  .
- This package provides a system allowing comments threads on content
- of cubicweb applications.
+ CubicWeb is a semantic web framework, see http://www.cubicweb.org