diff --git a/__init__.py b/__init__.py index 49a5fc7a21587613e5a7034198cd7a5f795b7412_X19pbml0X18ucHk=..5a2ff61cf2f220fabb95fb6453796f6be4dc54b8_X19pbml0X18ucHk= 100644 --- a/__init__.py +++ b/__init__.py @@ -1,1 +1,1 @@ -"""package __init__""" +"""cubicweb-blog""" diff --git a/__pkginfo__.py b/__pkginfo__.py index 49a5fc7a21587613e5a7034198cd7a5f795b7412_X19wa2dpbmZvX18ucHk=..5a2ff61cf2f220fabb95fb6453796f6be4dc54b8_X19wa2dpbmZvX18ucHk= 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -1,8 +1,8 @@ # pylint: disable-msg=W0622 """cubicweb-blog packaging information""" -distname = "cubicweb-blog" -modname = distname.split('-', 1)[1] +modname = 'blog' +distname = "cubicweb-%s" % modname numversion = (1, 6, 2) version = '.'.join(str(num) for num in numversion) @@ -13,5 +13,11 @@ author = "Logilab" author_email = "contact@logilab.fr" -web = '' +web = 'http://www.cubicweb.org/project/%s' % distname + +short_desc = "blog component for the CubicWeb framework" +long_desc = """This CubicWeb component provides blogging functionnalities. + +CubicWeb is a semantic web application framework, see http://www.cubicweb.org +""" @@ -17,13 +23,17 @@ -short_desc = "blog support for the CubicWeb framework" -long_desc = """CubicWeb is a entities / relations bases knowledge management system -developped at Logilab. -. -This package provides schema and views to add bloging functionalities to -cubicweb applications. -. -""" +classifiers = [ + 'Environment :: Web Environment' + 'Framework :: CubicWeb', + 'Programming Language :: Python', + 'Programming Language :: JavaScript', + ] + +__depends_cubes__ = {} +__depends__ = {'cubicweb': '>= 3.2.0'} +__use__ = tuple(__depends_cubes__) + +# package ### from os import listdir from os.path import join @@ -26,18 +36,7 @@ from os import listdir from os.path import join -short_desc = 'blog support for the CubicWeb framework' -long_desc = '''blog support for the CubicWeb framework''' -web = 'http://www.cubicweb.org/project/%s' % distname -classifiers = [ - 'Environment :: Web Environment' - 'Framework :: CubicWeb', - 'Programming Language :: Python', - 'Programming Language :: JavaScript', -] - - CUBES_DIR = join('share', 'cubicweb', 'cubes') try: data_files = [ @@ -55,5 +54,4 @@ # we are in an installed directory pass - cube_eid = 20300 @@ -59,3 +57,1 @@ cube_eid = 20300 -# used packages -__use__ = () diff --git a/debian/control b/debian/control index 49a5fc7a21587613e5a7034198cd7a5f795b7412_ZGViaWFuL2NvbnRyb2w=..5a2ff61cf2f220fabb95fb6453796f6be4dc54b8_ZGViaWFuL2NvbnRyb2w= 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Section: web Priority: optional Maintainer: Logilab Packaging Team <contact@logilab.fr> -Uploaders: Sylvain Thenault <sylvain.thenault@logilab.fr> +Uploaders: Sylvain Thenault <sylvain.thenault@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-blog @@ -12,6 +12,6 @@ Conflicts: erudi-blog, erudi-blog-server, erudi-blog-client, erudi-blog-comp Replaces: erudi-blog, erudi-blog-server, erudi-blog-client, erudi-blog-comp Depends: cubicweb-common (>= 3.2.0) -Description: blog support for the CubicWeb framework - CubicWeb is a semantic web application framework. +Description: blog component for the CubicWeb framework + This CubicWeb component provides blogging functionnalities. . @@ -17,3 +17,2 @@ . - This package provides schema and views to add bloging functionalities - to cubicweb applications. + CubicWeb is a semantic web application framework, see http://www.cubicweb.org