obs/slapos: Update to new debian format
Showing
-
Owner
This is a little too minimalistic.
DH_COMPAT=4
is removed but there's nodebian/compat
, which explains why OBS transforms the package to add 1, with a value that does not make sense: debhelper would be free to fail because version 5 does not support the new%: dh $@
. Also indebian/control
, the debhelper version dep is usually updated accordingly, or simply removed because we don't plan to use recent features. Suggested change:diff --git a/obs/slapos/debian/compat b/obs/slapos/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/obs/slapos/debian/compat @@ -0,0 +1 @@ +8 diff --git a/obs/slapos/debian/control b/obs/slapos/debian/control index 5e6af3d..218323d 100644 --- a/obs/slapos/debian/control +++ b/obs/slapos/debian/control @@ -2,7 +2,7 @@ Source: slapos-node Maintainer: Arnaud Fontaine <arnaud.fontaine@nexedi.com> Section: net Priority: optional -Build-Depends: debhelper (>= 4.1.16), +Build-Depends: debhelper, chrpath, po-debconf, wget,
obs/re6st/debian/rules contains parts that also apply here. At least everything related to shlibs. Actually, the old packaging already had
dh_makeshlibs -n
.
Please register or sign in to comment