Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
comment
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cubicweb
cubes
comment
Commits
731550df8a31
Commit
731550df8a31
authored
14 years ago
by
Sylvain Thénault
Browse files
Options
Downloads
Patches
Plain Diff
1.7
parent
033f6dbd78ff
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
__pkginfo__.py
+9
-10
9 additions, 10 deletions
__pkginfo__.py
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
with
15 additions
and
10 deletions
__pkginfo__.py
+
9
−
10
View file @
731550df
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
modname
=
'
comment
'
modname
=
'
comment
'
distname
=
"
cubicweb-%s
"
%
modname
distname
=
"
cubicweb-%s
"
%
modname
numversion
=
(
1
,
6
,
3
)
numversion
=
(
1
,
7
,
0
)
version
=
'
.
'
.
join
(
str
(
num
)
for
num
in
numversion
)
version
=
'
.
'
.
join
(
str
(
num
)
for
num
in
numversion
)
license
=
'
LGPL
'
license
=
'
LGPL
'
...
@@ -8,7 +8,6 @@
...
@@ -8,7 +8,6 @@
version
=
'
.
'
.
join
(
str
(
num
)
for
num
in
numversion
)
version
=
'
.
'
.
join
(
str
(
num
)
for
num
in
numversion
)
license
=
'
LGPL
'
license
=
'
LGPL
'
author
=
"
Logilab
"
author
=
"
Logilab
"
author_email
=
"
contact@logilab.fr
"
author_email
=
"
contact@logilab.fr
"
web
=
'
http://www.cubicweb.org/project/%s
'
%
distname
web
=
'
http://www.cubicweb.org/project/%s
'
%
distname
...
@@ -12,5 +11,4 @@
...
@@ -12,5 +11,4 @@
author
=
"
Logilab
"
author
=
"
Logilab
"
author_email
=
"
contact@logilab.fr
"
author_email
=
"
contact@logilab.fr
"
web
=
'
http://www.cubicweb.org/project/%s
'
%
distname
web
=
'
http://www.cubicweb.org/project/%s
'
%
distname
description
=
"
commenting system for the CubicWeb framework
"
description
=
"
commenting system for the CubicWeb framework
"
...
@@ -16,6 +14,4 @@
...
@@ -16,6 +14,4 @@
description
=
"
commenting system for the CubicWeb framework
"
description
=
"
commenting system for the CubicWeb framework
"
short_desc
=
description
# XXX cw < 3.8 bw compat
classifiers
=
[
classifiers
=
[
'
Environment :: Web Environment
'
,
'
Environment :: Web Environment
'
,
'
Framework :: CubicWeb
'
,
'
Framework :: CubicWeb
'
,
...
@@ -25,6 +21,7 @@
...
@@ -25,6 +21,7 @@
__depends__
=
{
'
cubicweb
'
:
'
>= 3.9.0
'
}
__depends__
=
{
'
cubicweb
'
:
'
>= 3.9.0
'
}
# package ###
# packaging ###
from
os
import
listdir
as
_listdir
from
os
import
listdir
as
_listdir
...
@@ -29,6 +26,6 @@
...
@@ -29,6 +26,6 @@
from
os
import
listdir
as
_listdir
from
os
import
listdir
as
_listdir
from
os.path
import
join
,
isdir
,
exists
from
os.path
import
join
,
isdir
from
glob
import
glob
from
glob
import
glob
THIS_CUBE_DIR
=
join
(
'
share
'
,
'
cubicweb
'
,
'
cubes
'
,
modname
)
THIS_CUBE_DIR
=
join
(
'
share
'
,
'
cubicweb
'
,
'
cubes
'
,
modname
)
...
@@ -44,6 +41,8 @@
...
@@ -44,6 +41,8 @@
[
THIS_CUBE_DIR
,
[
fname
for
fname
in
glob
(
'
*.py
'
)
if
fname
!=
'
setup.py
'
]],
[
THIS_CUBE_DIR
,
[
fname
for
fname
in
glob
(
'
*.py
'
)
if
fname
!=
'
setup.py
'
]],
]
]
# check for possible extended cube layout
# check for possible extended cube layout
for
dname
in
(
'
entities
'
,
'
views
'
,
'
sobjects
'
,
'
hooks
'
,
'
schema
'
,
'
data
'
,
'
i18n
'
,
'
migration
'
):
for
dirname
in
(
'
entities
'
,
'
views
'
,
'
sobjects
'
,
'
hooks
'
,
'
schema
'
,
'
data
'
,
'
i18n
'
,
'
migration
'
,
'
wdoc
'
):
if
isdir
(
dname
):
if
isdir
(
dirname
):
data_files
.
append
([
join
(
THIS_CUBE_DIR
,
dname
),
listdir
(
dname
)])
data_files
.
append
([
join
(
THIS_CUBE_DIR
,
dirname
),
listdir
(
dirname
)])
# Note: here, you'll need to add subdirectories if you want
# them to be included in the debian package
This diff is collapsed.
Click to expand it.
debian/changelog
+
6
−
0
View file @
731550df
cubicweb-comment (1.7.0-1) unstable; urgency=low
* new upstream release
-- Sylvain Thénault <sylvain.thenault@logilab.fr> Wed, 07 Jul 2010 11:10:28 +0200
cubicweb-comment (1.6.3-1) unstable; urgency=low
cubicweb-comment (1.6.3-1) unstable; urgency=low
* new upstream release
* new upstream release
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment