Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
senf
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
wiback
senf
Commits
2360bb91
Commit
2360bb91
authored
17 years ago
by
g0dil
Browse files
Options
Downloads
Patches
Plain Diff
debian: New automatic versioning from release tags
parent
ae1dd267
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
SConstruct
+14
-1
14 additions, 1 deletion
SConstruct
debian/changelog.template
+1
-1
1 addition, 1 deletion
debian/changelog.template
debian/control
+2
-2
2 additions, 2 deletions
debian/control
with
17 additions
and
4 deletions
SConstruct
+
14
−
1
View file @
2360bb91
# -*- python -*-
import
sys
,
glob
,
os
.
path
,
datetime
,
pwd
,
time
,
fnmatch
import
sys
,
glob
,
os
.
path
,
datetime
,
pwd
,
time
,
fnmatch
,
string
sys
.
path
.
append
(
'
senfscons
'
)
import
SENFSCons
...
...
@@ -28,7 +28,20 @@ def updateRevision(target, source, env):
rev
=
rev
[:
-
1
]
if
'
m
'
in
rev
:
rev
=
rev
[:
-
1
]
url
=
None
for
line
in
os
.
popen
(
"
svn info
"
):
elts
=
line
.
split
(
'
:
'
,
1
)
if
elts
[
0
]
==
'
URL
'
:
url
=
elts
[
1
].
strip
()
version
=
None
if
'
/tags/
'
in
url
:
version
=
url
.
rsplit
(
'
/
'
,
1
)[
-
1
].
split
(
'
_
'
,
1
)[
0
]
if
version
[
0
]
not
in
string
.
digits
:
version
=
None
if
version
is
None
:
version
=
'
1:0r%s
'
%
rev
changelog
=
file
(
'
debian/changelog.template
'
).
read
()
%
{
'
version
'
:
version
,
'
rev
'
:
rev
,
'
user
'
:
pwd
.
getpwuid
(
os
.
getuid
()).
pw_gecos
.
split
(
'
,
'
)[
0
].
strip
(),
'
date
'
:
time
.
strftime
(
"
%a, %d %b %Y %H:%M:%S +0000
"
,
time
.
gmtime
())
}
...
...
This diff is collapsed.
Click to expand it.
debian/changelog.template
+
1
−
1
View file @
2360bb91
libsenf (
0.0r%(rev
)s) unstable; urgency=low
libsenf (
%(version
)s) unstable; urgency=low
* Packaging revision %(rev)s
...
...
This diff is collapsed.
Click to expand it.
debian/control
+
2
−
2
View file @
2360bb91
...
...
@@ -35,8 +35,8 @@ Architecture: all
Depends: binutils-dev, libboost-dev, libboost-regex-dev,
libboost-date-time-dev, libboost-thread-dev, libboost-serialization-dev,
libboost-filesystem-dev, libsenf (=${source:Version}) | libsenf-dbg (=${source:Version})
Recommends: libsenf (=${
binary
:Version}), libsenf-dbg (=${
binary
:Version})
Suggests: libsenf-doc (=${
binary
:Version})
Recommends: libsenf (=${
source
:Version}), libsenf-dbg (=${
source
:Version})
Suggests: libsenf-doc (=${
source
:Version})
Description: SENF Extensible Network Framework, header files
The SENF Simple and Extensible Network Framework aims to be a
complete set of libraries to facilitate the development of network
...
...
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