--- midge-0.2.41.orig/debian/changelog +++ midge-0.2.41/debian/changelog @@ -0,0 +1,75 @@ +midge (0.2.41-3) unstable; urgency=medium + + * QA upload. + * Set maintainer to Debian QA Group. (see #840288) + * debian/rules: Add build-{arch,indep}. (Closes: #998976) + + -- Adrian Bunk Mon, 27 Dec 2021 20:30:06 +0200 + +midge (0.2.41-2.1) unstable; urgency=medium + + * Non-maintainer upload. + * Updated DH to level 10. (Closes: #817584) + * debian/control: + - Added ${misc:Depends} on Depends field. + - Added Homepage field. + - Bumped Standards-Version to 3.9.8. + * debian/watch: improved. + + -- Paulo Henrique de Lima Santana (phls) Sat, 08 Oct 2016 01:17:16 -0300 + +midge (0.2.41-2) unstable; urgency=low + + * Update debian/watch as well. + + -- Mario Lang Fri, 29 Dec 2006 16:37:55 +0100 + +midge (0.2.41-1) unstable; urgency=low + + * New upstream release. + * Update download URL and authors e-Mail in debian/copyright. + * Bump Standards-Version to 3.7.2. + + -- Mario Lang Fri, 29 Dec 2006 16:04:25 +0100 + +midge (0.2.38-1) unstable; urgency=low + + * New upstream release + * Add a debian/watch file. + * Properly install midge-mode.el. + * Update Standards-Version to 3.6.1. + + -- Mario Lang Sat, 1 May 2004 15:23:57 +0200 + +midge (0.2.37-1) unstable; urgency=low + + * New upstream release + - Fixes midi2mg -v when SIGPIPE is received (Closes: Bug#190017). + + -- Mario Lang Mon, 28 Jul 2003 09:37:40 +0200 + +midge (0.2.36-1) unstable; urgency=low + + * New upstream release (Closes: Bug#200677). + + -- Mario Lang Sat, 12 Jul 2003 22:07:21 +0200 + +midge (0.2.33-3) unstable; urgency=low + + * Add debhelper to Build-Depends (Closes: Bug#190488) + + -- Mario Lang Wed, 28 May 2003 15:54:54 +0200 + +midge (0.2.33-2) unstable; urgency=low + + * Redid the packaging a bit and first upload to debian archive. + (Closes: 168903) + + -- Mario Lang Sat, 16 Nov 2002 15:42:20 +0100 + +midge (0.2.33-1) unstable; urgency=low + + * Initial release. + + -- David Riley Sat, 24 Aug 2002 22:02:22 +0100 + --- midge-0.2.41.orig/debian/compat +++ midge-0.2.41/debian/compat @@ -0,0 +1 @@ +10 --- midge-0.2.41.orig/debian/control +++ midge-0.2.41/debian/control @@ -0,0 +1,17 @@ +Source: midge +Section: sound +Priority: optional +Maintainer: Debian QA Group +Build-Depends: debhelper (>= 10) +Standards-Version: 3.9.8 +Homepage: http://www.undef.org.uk/code/midge + +Package: midge +Architecture: all +Depends: ${misc:Depends}, perl, libmidi-perl +Suggests: timidity +Description: A text to MIDI program + Midge generates MIDI files from text input. Most General MIDI + features are supported, and there are some basic methods of + randomly generating sequences. Also included is a decompiler + and an emacs mode. --- midge-0.2.41.orig/debian/copyright +++ midge-0.2.41/debian/copyright @@ -0,0 +1,13 @@ +This package was debianized by David Riley on Wed Jan 23 10:34:27 GMT 2002 + +It was downloaded from http://www.undef.org.uk/code/midge/ + +Upstream author: David Riley + +This software is copyright (c) 1999-2002 David Riley. + +You are free to distribute this software under the terms of +the GNU General Public License. +On Debian systems, the complete text of the GNU General Public +License can be found in /usr/share/common-licenses/GPL file. + --- midge-0.2.41.orig/debian/dirs +++ midge-0.2.41/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +usr/share/midge/include --- midge-0.2.41.orig/debian/docs +++ midge-0.2.41/debian/docs @@ -0,0 +1,6 @@ +README +README.drums +README.elisp +README.examples +README.patches +TODO --- midge-0.2.41.orig/debian/emacsen-install +++ midge-0.2.41/debian/emacsen-install @@ -0,0 +1,19 @@ +#!/bin/sh +# /usr/lib/emacsen-common/packages/install/bhl +set -e + +FLAVOR=$1 +echo install/midge-mode: Handling install of emacsen flavor ${FLAVOR} + +byte_compile_options="-batch -f batch-byte-compile" +el_dir=/usr/share/emacs/site-lisp/ +elc_dir=/usr/share/${FLAVOR}/site-lisp/ + +if [ ${FLAVOR} != emacs ]; then + echo install/midge-mode: byte-compiling for ${FLAVOR} + cp ${el_dir}midge-mode.el ${elc_dir} + cd ${elc_dir} && ${FLAVOR} ${byte_compile_options} midge-mode.el + rm ${elc_dir}midge-mode.el +fi + +exit 0 --- midge-0.2.41.orig/debian/emacsen-remove +++ midge-0.2.41/debian/emacsen-remove @@ -0,0 +1,11 @@ +#!/bin/sh +# /usr/lib/emacsen-common/packages/remove/bhl +set -e + +FLAVOR=$1 +echo remove/midge-mode: Handling removal of emacsen flavor ${FLAVOR} + +if [ ${FLAVOR} != emacs ]; then + rm -f /usr/share/${FLAVOR}/site-lisp/midge-mode.elc +fi +exit 0; --- midge-0.2.41.orig/debian/emacsen-startup +++ midge-0.2.41/debian/emacsen-startup @@ -0,0 +1,2 @@ +(autoload 'midge-mode "midge-mode" "Midge Mode" t) +(add-to-list 'auto-mode-alist '("\\.mg$" . midge-mode)) --- midge-0.2.41.orig/debian/examples +++ midge-0.2.41/debian/examples @@ -0,0 +1 @@ +examples/* --- midge-0.2.41.orig/debian/install +++ midge-0.2.41/debian/install @@ -0,0 +1,4 @@ +midge usr/bin +midge-mode.el usr/share/emacs/site-lisp +midi2mg usr/bin +include/* usr/share/midge --- midge-0.2.41.orig/debian/rules +++ midge-0.2.41/debian/rules @@ -0,0 +1,58 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This is the debhelper compatibility version to use. +#export DH_COMPAT=4 + + +build: midi2mg.pl midge.pl + dh_testdir + + # Add here commands to compile the package. + echo "#!/usr/bin/perl" | cat - midge.pl >midge && chmod +x midge + echo "#!/usr/bin/perl" | cat - midi2mg.pl >midi2mg && chmod +x midi2mg + +clean: + dh_testdir + dh_testroot + rm -f midge midi2mg + + dh_clean + +install: build midge midi2mg + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/midge. + dh_install + dh_installdocs + dh_installexamples + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installemacsen + dh_installman midge.1 midi2mg.1 + dh_installchangelogs CHANGELOG + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: ; + + +build-arch: build +build-indep: build +binary: binary-indep binary-arch +.PHONY: build build-arch build-indep clean binary-indep binary-arch binary install configure --- midge-0.2.41.orig/debian/watch +++ midge-0.2.41/debian/watch @@ -0,0 +1,3 @@ +version=4 +http://www.undef.org.uk/code/midge/midge-(\d\S+)\.tar\.(?:bz2|gz|xz) +