Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Do not assume that short name is behind a '-' but strip only '^debian-' to obtain short name
· 350d63cf
Andreas Tille
authored
Mar 09, 2019
350d63cf
blends-common Depends: sensible-utils
· 986011c0
Andreas Tille
authored
Mar 09, 2019
986011c0
Standards-Version: 4.3.0
· db1f307a
Andreas Tille
authored
Mar 09, 2019
db1f307a
Show whitespace changes
Inline
Side-by-side
blends.py
View file @
db1f307a
...
...
@@ -47,7 +47,7 @@ class Blend:
self
.
name
=
self
.
control_stub
[
0
][
'
Source
'
]
'''
Full (package) name of the blend (``debian-astro``)
'''
self
.
short_name
=
self
.
name
.
split
(
'
-
'
,
1
)[
-
1
]
self
.
short_name
=
re
.
sub
(
r
'
^debian-
'
,
''
,
self
.
name
)
'''
Short name of the blend (``astro``)
'''
self
.
title
=
'
Debian
'
+
self
.
short_name
.
capitalize
()
...
...
debian/changelog
View file @
db1f307a
blends (0.7.3) UNRELEASED; urgency=medium
[ Gianfranco Costamagna ]
* Add Ubuntu sources.lists
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 07 Sep 2018 11:12:08 +0200
[ Andreas Tille ]
* Do not assume that short name is behind a '-' but strip only '^debian-' to
obtain short name
* blends-common Depends: sensible-utils
* Standards-Version: 4.3.0
-- Andreas Tille <tille@debian.org> Sat, 09 Mar 2019 15:13:00 +0100
blends (0.7.2) unstable; urgency=medium
...
...
debian/control
View file @
db1f307a
...
...
@@ -17,7 +17,7 @@ Build-Depends-Indep: dblatex,
python3-sphinx,
w3m,
xmlto
Standards-Version: 4.
1.5
Standards-Version: 4.
3.0
Vcs-Browser: https://salsa.debian.org/blends-team/blends
Vcs-Git: https://salsa.debian.org/blends-team/blends.git
...
...
@@ -44,6 +44,7 @@ Section: misc
Depends: adduser,
debconf,
menu,
sensible-utils,
${misc:Depends}
Suggests: blends-doc
Description: Debian Pure Blends common package
...
...