]> git.corax.cc Git - toolbox/commitdiff
debian: Increase package version to 0.3.1-1
authorMatthias Kruk <m@m10k.eu>
Thu, 25 Nov 2021 05:36:16 +0000 (14:36 +0900)
committerMatthias Kruk <m@m10k.eu>
Thu, 25 Nov 2021 05:36:16 +0000 (14:36 +0900)
This commit increases the package version to 0.3.1-1 and adds missing
dependencies to the debian/control file.

debian/changelog
debian/control

index d50de2350e960d9b2d46f13d4544dec3b3ac28dc..2c3cffffb148646cc109ddb41e6e1e6bb00a058c 100644 (file)
@@ -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 <m@m10k.eu>  Thu, 25 Nov 2021 13:42:15 +0900
+
+
 toolbox (0.3-1) unstable; urgency=medium
 
   * New modules
index fc8c81f709c0afb8fcf62639e90cb482d1a45f5a..a2e02f97158b284773a77edd5345000030d1f595 100644 (file)
@@ -1,15 +1,15 @@
 Source: toolbox
 Priority: optional
 Maintainer: Matthias Kruk <m@m10k.eu>
-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.