From 9ad19a36fe02e580f78a929206915a75f0531ab5 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Sun, 4 Apr 2021 08:32:43 +0900 Subject: [PATCH] debian: Change architecture to "all" and fix warnings during build The architecture in the Debian control file is set to "any", causing architecture-specific packages to be built. This commit changes the architecture to "all", causing the resulting packages to be usable on any architecture. This commit further fixes other warnings emitted by dpkg-buildpackage with regard to the changelog and fields in the control file. --- debian/changelog | 2 +- debian/compat | 2 +- debian/control | 7 +++---- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index 4f3451e..6227d9a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,7 +9,7 @@ toolbox (0.2-1) unstable; urgency=medium - xrandr: X monitor handling - clip: X clipboard functions - -- Matthias Kruk Sun, Apr 04 2021 07:40:55 +0900 + -- Matthias Kruk Sun, 04 Apr 2021 07:40:55 +0900 toolbox (0.1-1) unstable; urgency=medium diff --git a/debian/compat b/debian/compat index ec63514..f599e28 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/debian/control b/debian/control index cfe1259..07faee6 100644 --- a/debian/control +++ b/debian/control @@ -5,16 +5,15 @@ Build-Depends: debhelper (>= 9) Standards-Version: 3.9.8 Section: shells Homepage: https://m10k.eu/toolbox -Architecture: any -Depends: bash (>= 4.0) Description: Module management for bash scripts Provides the necessary infrastructure to use loadable modules in shell scripts, and a set of basic modules for common tasks. + Package: toolbox Section: shells -Architecture: any -Depends: ${misc:Depends} +Architecture: all +Depends: bash (>= 4.0) ${misc:Depends} Description: Module management for bash scripts Provides the necessary infrastructure to use loadable modules in shell scripts, and a set of basic modules for common tasks. -- 2.47.3