fixeria submitted this change.

View Change

Approvals: Jenkins Builder: Verified osmith: Looks good to me, approved
debian: fixup: add missing libsctp dependency

I found `${libsctp:Version}` in `debian/control` of the erlang package
(https://salsa.debian.org/erlang-team/packages/erlang). As it turns
out, this is not a standard debhelper substvar (like `${shlibs:Depends}`
or `${python3:Depends}`), but a custom one defined in `debian/rules`:

dh_gencontrol -a -- -Vlibsctp:Version='$(LIBSCTPDEP)'

Thus in our case it yields nothing. Use the package name instead.

Change-Id: Ia74d75e86b1436fc7dcdfa40d90c7e0c2e5648a1
Fixes: 9455ca1 ("debian: add missing libsctp dependency")
---
M debian/control
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/debian/control b/debian/control
index 515e3b2..018077a 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
- ${libsctp:Version}
+ libsctp1
Suggests: osmo-s1gw-cli
Multi-Arch: foreign
Description: Osmocom S1 gateway

To view, visit change 41173. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: erlang/osmo-s1gw
Gerrit-Branch: master
Gerrit-Change-Id: Ia74d75e86b1436fc7dcdfa40d90c7e0c2e5648a1
Gerrit-Change-Number: 41173
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy@sysmocom.de>
Gerrit-Reviewer: jolly <andreas@eversberg.eu>
Gerrit-Reviewer: osmith <osmith@sysmocom.de>