Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cubicweb
cubes
email
Commits
0c3610fb4152
Commit
2f0a53fd
authored
Aug 31, 2009
by
Nicolas Chauvat
Browse files
P [packaging] describe dependencies in pkginfo
--HG-- branch : stable
parent
b84c78d3cd1b
Changes
3
Hide whitespace changes
Inline
Side-by-side
__init__.py
View file @
0c3610fb
"""package __init__"""
"""cubicweb-email"""
from
cubicweb
import
ETYPE_NAME_MAP
ETYPE_NAME_MAP
[
'Emailpart'
]
=
'EmailPart'
ETYPE_NAME_MAP
[
'Emailthread'
]
=
'EmailThread'
...
...
__pkginfo__.py
View file @
0c3610fb
# pylint: disable-msg=W0622
"""cubicweb-email packaging information"""
dist
name
=
"cubicweb-
email
"
mod
name
=
distname
.
split
(
'-'
,
1
)[
1
]
mod
name
=
'
email
'
dist
name
=
"cubicweb-%s"
%
modname
numversion
=
(
1
,
5
,
1
)
version
=
'.'
.
join
(
str
(
num
)
for
num
in
numversion
)
...
...
@@ -15,13 +15,10 @@ author = "Logilab"
author_email
=
"contact@logilab.fr"
web
=
'http://www.cubicweb.org/project/%s'
%
distname
short_desc
=
"email 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 emails in cubicweb
applications.
.
short_desc
=
"email component for the CubicWeb framework"
long_desc
=
"""This CubicWeb component models email messages.
CubicWeb is a semantic web framework, see http://www.cubicweb.org
"""
from
os
import
listdir
...
...
@@ -47,10 +44,13 @@ except OSError:
# we are in an installed directory
pass
cube_eid
=
20324
# used packages
__use__
=
(
'file'
,)
__depends_cubes__
=
{
'file'
:
None
,}
__use__
=
tuple
(
__depends_cubes__
)
__depends__
=
{
'cubicweb'
:
'>= 3.2.0'
}
for
key
,
value
in
__depends_cubes__
.
items
():
__depends__
[
'cubicweb-'
+
key
]
=
value
__recommend__
=
(
'comment'
,)
classifiers
=
[
'Environment :: Web Environment'
,
...
...
debian/control
View file @
0c3610fb
...
...
@@ -2,7 +2,7 @@ Source: cubicweb-email
Section: web
Priority: optional
Maintainer: Logilab Packaging Team <contact@logilab.fr>
Uploaders: Sylvain Thenault <sylvain.thenault@logilab.fr>, Laure Bourgois <laure.bourgois@logilab.fr>
Uploaders: Sylvain Thenault <sylvain.thenault@logilab.fr>, Laure Bourgois <laure.bourgois@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-email
...
...
@@ -12,8 +12,7 @@ Architecture: all
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), cubicweb-file
Description: email
suppor
t for the CubicWeb framework
CubicWeb
is a semantic web application framework
.
Description: email
componen
t for the CubicWeb framework
This
CubicWeb
component models email messages
.
.
This package provides schema and views to store emails in cubicweb
applications.
CubicWeb is a semantic web framework, see http://www.cubicweb.org
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment