Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cubicweb
cubes
intranet
Commits
afb0dbf0b416
Commit
fddcba80
authored
Sep 08, 2009
by
Nicolas Chauvat
Browse files
Package: describe dependencies in pkginfo
--HG-- branch : stable
parent
d80bf7f58790
Changes
3
Hide whitespace changes
Inline
Side-by-side
__init__.py
View file @
afb0dbf0
"""cubicweb-intranet"""
__pkginfo__.py
View file @
afb0dbf0
# pylint: disable-msg=W0622
"""cubicweb-intranet application packaging information"""
modname
=
'intranet'
distname
=
"cubicweb-intranet"
modname
=
distname
.
split
(
'-'
,
1
)[
1
]
numversion
=
(
0
,
16
,
0
)
version
=
'.'
.
join
(
str
(
num
)
for
num
in
numversion
)
license
=
'L
C
L'
license
=
'L
GP
L'
copyright
=
'''Copyright (c) 2003-2009 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr/ -- mailto:contact@logilab.fr'''
author
=
"Logilab"
author_email
=
"contact@logilab.fr"
short_desc
=
"CubicWeb cube for intranets"
long_desc
=
"""CubicWeb is a entities / relations bases knowledge management system
developed at Logilab.
.
This package provides the "Intranet" application built on top of CubicWeb.
It manages users, documents, links, tasks, events, etc.
short_desc
=
"an intranet built on the CubicWeb framework"
long_desc
=
"""
CubicWeb is a semantic web application framework, see http://www.cubicweb.org
"""
from
os
import
listdir
from
os.path
import
join
,
isdir
web
=
'http://cubicweb.org/project/cubicweb-intranet'
ftp
=
''
pyversions
=
[
'2.4'
]
classifiers
=
[
'Environment :: Web Environment'
'Framework :: CubicWeb'
,
'Programming Language :: Python'
,
'Programming Language :: JavaScript'
,
]
__depends_cubes__
=
{
'blog'
:
None
,
'book'
:
None
,
'card'
:
None
,
'link'
:
None
,
'file'
:
None
,
'folder'
:
None
,
'tag'
:
None
,
'comment'
:
None
,
'task'
:
None
,
'event'
:
None
,
}
__depends__
=
{
'cubicweb'
:
'>= 3.2.0'
}
for
key
,
value
in
__depends_cubes__
.
items
():
__depends__
[
'cubicweb-'
+
key
]
=
value
__use__
=
tuple
(
__depends_cubes__
)
__recommend__
=
()
cube_eid
=
8562
# packaging ###
from
os
import
listdir
from
os.path
import
join
,
isdir
TEMPLATES_DIR
=
join
(
'share'
,
'cubicweb'
,
'cubes'
)
try
:
data_files
=
[
...
...
@@ -46,6 +71,3 @@ try:
except
OSError
:
# we are in an installed directory
pass
__use__
=
(
'blog'
,
'book'
,
'card'
,
'link'
,
'file'
,
'folder'
,
'tag'
,
'comment'
,
'task'
,
'event'
)
cube_eid
=
8562
debian/control
View file @
afb0dbf0
...
...
@@ -5,16 +5,14 @@ Maintainer: Logilab Packaging Team <contact@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://cubicweb.org/project/cubicweb-intranet
Package: cubicweb-intranet
Conflicts: erudi-intranet, erudi-intranet-appl-server, erudi-intranet-appl-client, erudi-intranet-appl
Replaces: erudi-intranet, erudi-intranet-appl-server, erudi-intranet-appl-client, erudi-intranet-appl
Architecture: all
Depends: cubicweb-common (>= 3.2.0), cubicweb-blog, cubicweb-book, cubicweb-link, cubicweb-file, cubicweb-comment,
cubicweb-task, cubicweb-event, cubicweb-tag, cubicweb-folder, cubicweb-card
Description: an intranet using the CubicWeb framework
CubicWeb is a semantic web application framework.
Depends: cubicweb-common (>= 3.2.0), cubicweb-blog, cubicweb-book, cubicweb-card, cubicweb-comment,
cubicweb-link, cubicweb-file, cubicweb-task, cubicweb-event, cubicweb-tag, cubicweb-folder
Description: an intranet built on the CubicWeb framework
.
This package provides the "Intranet" application built on top of
CubicWeb. It manages blog, books, documents, links, tasks, events, etc.
CubicWeb is a semantic web application framework, see http://www.cubicweb.org
Write
Preview
Markdown
is supported
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