From e5c2c211f94b598ff739ad065dac164b21f04dab Mon Sep 17 00:00:00 2001 From: Alois Mahdal Date: Jan 11 2019 11:07:36 +0000 Subject: Fix syntax error in debian/control debian/control does not allow creating dependency lists by repeating Depends: field, like RPM .spec files do. I did not realize it when adding coerce.sh --- diff --git a/packaging/debian/control b/packaging/debian/control index 6bf3635..887fc53 100644 --- a/packaging/debian/control +++ b/packaging/debian/control @@ -174,9 +174,10 @@ Description: Shellfu/sh module for building interactive terminal menus Package: shellfu-sh-coerce Architecture: all -Depends: shellfu-sh -Depends: perl -Depends: perl-modules +Depends: + shellfu-sh, + perl, + perl-modules, Description: Shellfu/sh module with data coercion helpers Shellfu is an attempt to add modularity to your shell scripts. .