From: Matthias Kruk Date: Thu, 25 Nov 2021 05:36:16 +0000 (+0900) Subject: debian: Increase package version to 0.3.1-1 X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=4126851e307c397746320743d0cb12705c8797e9;p=toolbox debian: Increase package version to 0.3.1-1 This commit increases the package version to 0.3.1-1 and adds missing dependencies to the debian/control file. --- diff --git a/debian/changelog b/debian/changelog index d50de23..2c3cfff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,37 @@ +toolbox (0.3.1-1) unstable; urgency=medium + + * New modules + - git: easy interaction with git repositories + - ipc: primitives for message-based IPC + - wmutex: weak (owner-less) mutexes + * Removed modules + - acpi/ac: Moved to toolbox-linux + - acpi/battery: Moved to toolbox-linux + - clip: Moved to toolbox-x11 + - gitlab: Moved to toolbox-restapis + - iruca: Moved to toolbox-restapis + - net/iface: Moved to toolbox-linux + - ssh: Moved to toolbox-goodies + - xrandr: Moved to toolbox-x11 + * Fixes + - mutex: Don't use inotify because it doesn't work on NFS + * Improvements + - array: Add functions for comparing arrays + - conf: Add configuration domains + - inst: Make daemons handle signals + - inst: Add status messages + - json: Implement type hints + - mutex: Implement timeouts + - opt: Implement RegEx commandline validation + - queue: Add queue_foreach() function + - queue: Implement timeouts + - sem: Fix performance issues + - sem: Implement timeouts + - Add shellspec-based test suite + + -- Matthias Kruk Thu, 25 Nov 2021 13:42:15 +0900 + + toolbox (0.3-1) unstable; urgency=medium * New modules diff --git a/debian/control b/debian/control index fc8c81f..a2e02f9 100644 --- a/debian/control +++ b/debian/control @@ -1,15 +1,15 @@ Source: toolbox Priority: optional Maintainer: Matthias Kruk -Build-Depends: debhelper (>= 9) +Build-Depends: debhelper (>= 9), make, coreutils, findutils, grep, sed Standards-Version: 3.9.8 Section: shells -Homepage: https://m10k.eu/toolbox +Homepage: https://m10k.eu/toolbox.html Package: toolbox Section: shells Architecture: all -Depends: bash (>= 4.0) ${misc:Depends} +Depends: bash (>= 4.0), coreutils, findutils, grep, sed, git, jq, ${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.