diff options
-rw-r--r-- | debian/changelog | 43 | ||||
-rw-r--r-- | debian/compat | 1 | ||||
-rw-r--r-- | debian/control | 17 | ||||
-rw-r--r-- | debian/copyright | 7 | ||||
-rw-r--r-- | debian/gbp.conf | 4 | ||||
-rw-r--r-- | debian/manpages | 1 | ||||
-rw-r--r-- | debian/menu | 2 | ||||
-rw-r--r-- | debian/midimonster.doc-base.EX | 9 | ||||
-rwxr-xr-x | debian/rules | 8 | ||||
-rw-r--r-- | debian/source/format | 1 |
10 files changed, 93 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..e85a8e3 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,43 @@ +midimonster (0.5-1) unstable; urgency=medium + + * New RTP MIDI backend + * Support for deprecated MIDI channel syntax removed + * Core performance improvements + * ArtNet and sACN performance improvements + * Bugfixes to OpenPixelControl, ArtNet and sACN backends + * Lua/Python default channel handlers and cleanup handlers + * Lua/Python now allow output() calls during initial script parsing + * Lua cooperative multithreading API + * OSC bundle reception + * maweb now supports fallback connections + + -- Fabian "cbdev" Stumpf <cb@cbcdn.com> Mon, 27 Apr 2020 22:51:20 +0200 + +midimonster (0.4-1) unstable; urgency=medium + + * Add input_channel and timestamp calls to Lua core interface + * Allow commandline configuration override + * New OpenPixelControl backend + * New Python backend + * Quiet mode for maweb backend + * Rate-limiting for ArtNet and sACN (configurable) + * Core API: Allow managed_fd implementation data to be updated + + -- cbdev <cb@cbcdn.com> Sun, 08 Mar 2020 17:15:56 +0100 + +midimonster (0.3-1) unstable; urgency=medium + + * Bugfixes to the jack, maweb, evdev and sacn backends + * New commandline option -v to query version + * Create basic manpage + * 'local' mode for sACN descriptors + * Updates to example configuration + * New 'layering' example configuration + + -- cbdev <cb@cbcdn.com> Tue, 31 Dec 2019 11:03:56 +0100 + +midimonster (0.2-1) unstable; urgency=low + + * Initial release (Closes: #nnnn) + + -- cbdev <cb@cbcdn.com> Wed, 04 Dec 2019 20:45:01 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..b4de394 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +11 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..02f2c44 --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: midimonster +Section: utils +Priority: optional +Maintainer: Fabian "cbdev" Stumpf <cb@cbcdn.com> +Build-Depends: debhelper (>= 11) +Standards-Version: 4.1.3 +Homepage: https://midimonster.net/ +Vcs-Browser: https://github.com/cbdevnet/midimonster +Vcs-Git: https://github.com/cbdevnet/midimonster + +Package: midimonster +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Multi-protocol translation tool + The MIDIMonster allows the user to translate any channel on one protocol + into channel(s) on any other (or the same) supported protocol. + Supported protocols include ArtNet, OSC, MIDI, sACN, and many more. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..d557460 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,7 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: midimonster +Source: https://github.com/cbdevnet/midimonster + +Files: * +Copyright: 2017-2019 cbdev/Fabian J. Stumpf <cb@cbcdn.com> +License: BSD-2-clause diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..33b58a1 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,4 @@ +[DEFAULT] +debian-branch = debian/master +upstream-branch = master +upstream-tag = v%(version)s diff --git a/debian/manpages b/debian/manpages new file mode 100644 index 0000000..5145302 --- /dev/null +++ b/debian/manpages @@ -0,0 +1 @@ +midimonster.1 diff --git a/debian/menu b/debian/menu new file mode 100644 index 0000000..ea1e6ff --- /dev/null +++ b/debian/menu @@ -0,0 +1,2 @@ +?package(midimonster):needs="text" section="Applications/Sound"\ + title="midimonster" command="/usr/bin/midimonster" diff --git a/debian/midimonster.doc-base.EX b/debian/midimonster.doc-base.EX new file mode 100644 index 0000000..5acd953 --- /dev/null +++ b/debian/midimonster.doc-base.EX @@ -0,0 +1,9 @@ +Document: midimonster +Title: MIDIMonster documentation +Author: Fabian J. Stumpf +Abstract: The MIDIMonster documentation contains information on how to configure and use the MIDIMonster, most importantly the backend documentation. +Section: unknown + +Format: HTML +Index: /usr/share/doc/midimonster/html/index.html +Files: /usr/share/doc/midimonster/html/*.html diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..b1782ca --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f +#export DH_VERBOSE = 1 +export PREFIX=/usr +export PLUGINS=${PREFIX}/lib/midimonster +export DEFAULT_CFG=/etc/midimonster/midimonster.cfg + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) |