From 2c06ee3305fcc8aa850a59eec20828a7787d2183 Mon Sep 17 00:00:00 2001 From: Grzegorz Gutowski Date: Thu, 7 Mar 2024 10:36:05 +0100 Subject: [PATCH] Fix deb/rpm packages: missing build dependencies --- .copr/openvpn3-indicator.spec.py | 2 ++ .launchpad/openvpn3-indicator.control.py | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.copr/openvpn3-indicator.spec.py b/.copr/openvpn3-indicator.spec.py index 7ed4692..375f531 100755 --- a/.copr/openvpn3-indicator.spec.py +++ b/.copr/openvpn3-indicator.spec.py @@ -72,7 +72,9 @@ BUILDREQUIRES = ' '.join(sorted([ 'desktop-file-utils', 'make', + 'python3', 'sed', + 'zip', ])) REQUIRES = ' '.join(sorted([ 'openvpn3-client', diff --git a/.launchpad/openvpn3-indicator.control.py b/.launchpad/openvpn3-indicator.control.py index aa05fa9..f5058f0 100755 --- a/.launchpad/openvpn3-indicator.control.py +++ b/.launchpad/openvpn3-indicator.control.py @@ -78,11 +78,12 @@ BUILDARCH = 'noarch' COMPAT = '10' BUILDREQUIRES = [ + f'debhelper (>= {COMPAT})', 'desktop-file-utils', 'make', - 'sed', 'python3', - f'debhelper (>= {COMPAT})', + 'sed', + 'zip', ] REQUIRES = [ 'openvpn3',