Skip to content
Snippets Groups Projects
Commit 0d1f31be3620 authored by Nicolas Chauvat's avatar Nicolas Chauvat
Browse files

P [packaging] describe dependencies in pkginfo

parent f7224c996ba7
No related branches found
No related tags found
No related merge requests found
"""package __init__"""
"""cubicweb-link"""
# pylint: disable-msg=W0622
"""cubicweb-link packaging information"""
distname = "cubicweb-link"
modname = distname.split('-', 1)[1]
modname = 'link'
distname = "cubicweb-%s" % modname
numversion = (1, 3, 1)
version = '.'.join(str(num) for num in numversion)
......@@ -15,4 +15,6 @@
author_email = "contact@logilab.fr"
web = 'http://www.cubicweb.org/project/%s' % distname
short_desc = "link component for the CubicWeb framework"
long_desc = """This CubicWeb component provides links (a URL with a description).
......@@ -18,10 +20,4 @@
short_desc = "Link 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 store Internet links in cubicweb
applications.
.
CubicWeb is a semantic web application framework, see http://www.cubicweb.org
"""
......@@ -26,5 +22,20 @@
"""
classifiers = [
'Environment :: Web Environment',
'Framework :: CubicWeb',
'Programming Language :: Python',
'Programming Language :: JavaScript',
]
# dependencies
__depends_cubes__ = {}
__depends__ = {'cubicweb': '>= 3.2.0'}
__use__ = tuple(__depends_cubes__)
# packaging
from os import listdir
from os.path import join
......@@ -45,5 +56,4 @@
# we are in an installed directory
pass
cube_eid = 20332
......@@ -49,9 +59,1 @@
cube_eid = 20332
# used packages
__use__ = ()
classifiers = [
'Environment :: Web Environment',
'Framework :: CubicWeb',
'Programming Language :: Python',
'Programming Language :: JavaScript',
]
......@@ -2,6 +2,6 @@
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.7.3
......@@ -6,8 +6,9 @@
Build-Depends: debhelper (>= 5.0.37.1), python (>=2.4), python-dev (>=2.4)
Standards-Version: 3.7.3
Homepage: http://www.cubicweb.org/project/cubicweb-link
Package: cubicweb-link
Architecture: all
Conflicts: erudi-link, erudi-link-server, erudi-link-client, erudi-link-comp
Replaces: erudi-link, erudi-link-server, erudi-link-client, erudi-link-comp
Depends: cubicweb-common (>= 3.2.0)
......@@ -8,9 +9,9 @@
Package: cubicweb-link
Architecture: all
Conflicts: erudi-link, erudi-link-server, erudi-link-client, erudi-link-comp
Replaces: erudi-link, erudi-link-server, erudi-link-client, erudi-link-comp
Depends: cubicweb-common (>= 3.2.0)
Description: Link support for the CubicWeb framework
CubicWeb is a semantic web application framework.
Description: link component for the CubicWeb framework
This CubicWeb component provides links (a URL with a description).
.
......@@ -16,3 +17,2 @@
.
This package provides schema and views to store Internet links in cubicweb
applications.
CubicWeb is a semantic web application framework, see http://www.cubicweb.org
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