[Python-modules-commits] r10826 - in packages/mingus/trunk (8 files)

quadrispro-guest at users.alioth.debian.org quadrispro-guest at users.alioth.debian.org
Sat Dec 19 10:10:49 UTC 2009


    Date: Saturday, December 19, 2009 @ 10:10:48
  Author: quadrispro-guest
Revision: 10826

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/mingus/trunk/debian/
  packages/mingus/trunk/debian/changelog
  packages/mingus/trunk/debian/compat
  packages/mingus/trunk/debian/control
  packages/mingus/trunk/debian/copyright
  packages/mingus/trunk/debian/docs
  packages/mingus/trunk/debian/rules
  packages/mingus/trunk/debian/watch


Property changes on: packages/mingus/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/mingus/trunk/debian/changelog
===================================================================
--- packages/mingus/trunk/debian/changelog	                        (rev 0)
+++ packages/mingus/trunk/debian/changelog	2009-12-19 10:10:48 UTC (rev 10826)
@@ -0,0 +1,5 @@
+mingus (0.4.2.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #561615).
+
+ -- Alessio Treglia <quadrispro at ubuntu.com>  Fri, 18 Dec 2009 17:58:27 +0100

Added: packages/mingus/trunk/debian/compat
===================================================================
--- packages/mingus/trunk/debian/compat	                        (rev 0)
+++ packages/mingus/trunk/debian/compat	2009-12-19 10:10:48 UTC (rev 10826)
@@ -0,0 +1 @@
+7

Added: packages/mingus/trunk/debian/control
===================================================================
--- packages/mingus/trunk/debian/control	                        (rev 0)
+++ packages/mingus/trunk/debian/control	2009-12-19 10:10:48 UTC (rev 10826)
@@ -0,0 +1,40 @@
+Source: mingus
+Section: python
+Priority: optional
+Maintainer: Alessio Treglia <quadrispro at ubuntu.com>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7.0.50)
+Build-Depends-Indep: python (>= 2.5),
+ python-support (>= 0.5.3)
+XS-Python-Version: >= 2.5
+Standards-Version: 3.8.3
+Homepage: http://mingus.googlecode.com
+
+Package: python-mingus
+Architecture: all
+Depends: ${python:Depends},
+ ${misc:Depends}
+Suggests: fluidsynth,
+ lilypond,
+ python-pygame,
+ python-numpy
+Description: advanced music theory and notation package
+ mingus is an advanced music theory and notation package 
+ for Python with MIDI playback support. It can be used to play 
+ around with music theory, to build editors, educational tools and 
+ other applications that need to process and/or play music. 
+ It can also be used to create sheet music with LilyPond 
+ and do automated musicological analysis on chords, scales and 
+ harmonic progressions.
+ .
+ The MIDI package can save and load MIDI files, and -last but not least-
+ provides a general purpose sequencer for all the containers and a
+ FluidSynth sequencer subclass. This allows you to play all your data
+ structures straight from Python in just a couple of lines. Most of the
+ icky timing and MIDI code has been abstracted away for you, leaving a
+ clean, relatively simple API.
+ .
+ Lastly, the extra package includes a LilyPond exporter which can be used
+ to create sheet music in PDF, PNG and postscript. It also offers ASCII
+ tablature and MusicXML exporting and a sound analysis module which can
+ recognize notes and melody in raw audio data.

Added: packages/mingus/trunk/debian/copyright
===================================================================
--- packages/mingus/trunk/debian/copyright	                        (rev 0)
+++ packages/mingus/trunk/debian/copyright	2009-12-19 10:10:48 UTC (rev 10826)
@@ -0,0 +1,33 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59
+Name: mingus
+Maintainer:
+ Bart Spaans <onderstekop at gmail.com>
+ Javier Palance <jpalanca at gmail.com>
+ Nathan Whitehead <nwhitehe at gmail.com>
+Source: http://code.google.com/p/mingus/downloads/list
+
+Files: *
+Copyright: 2008-2009, Bart Spaans <onderstekop at gmail.com>
+License: GPL-3
+
+Files: debian/*
+Copyright:
+ 2009, Alessio Treglia <quadrispro at ubuntu.com>
+ 2009, Stefan Huchler <stefan at canta-game.org>
+License: GPL-3
+
+License: GPL-3
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+X-Comment: On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-3'.

Added: packages/mingus/trunk/debian/docs
===================================================================
--- packages/mingus/trunk/debian/docs	                        (rev 0)
+++ packages/mingus/trunk/debian/docs	2009-12-19 10:10:48 UTC (rev 10826)
@@ -0,0 +1,3 @@
+THANKS
+README
+AUTHORS

Added: packages/mingus/trunk/debian/rules
===================================================================
--- packages/mingus/trunk/debian/rules	                        (rev 0)
+++ packages/mingus/trunk/debian/rules	2009-12-19 10:10:48 UTC (rev 10826)
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
+
+override_dh_auto_install:
+	dh_auto_install -- \
+		--prefix=/usr \
+		--install-data=/usr/share/python-mingus
+	mkdir -p debian/python-mingus/usr/share/doc/python-mingus/
+	mv debian/python-mingus/usr/share/python-mingus/mingus_examples \
+		debian/python-mingus/usr/share/doc/python-mingus/examples
+	find debian/python-mingus/usr/share -type d -empty -delete


Property changes on: packages/mingus/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/mingus/trunk/debian/watch
===================================================================
--- packages/mingus/trunk/debian/watch	                        (rev 0)
+++ packages/mingus/trunk/debian/watch	2009-12-19 10:10:48 UTC (rev 10826)
@@ -0,0 +1,4 @@
+version=3
+opts="uversionmangle=s/luks-//;s/-pre/~pre/;s/-rc/~rc/" \
+http://code.google.com/p/mingus/downloads/list \
+http://mingus.googlecode.com/files/mingus-(.*)\.tar\.gz




More information about the Python-modules-commits mailing list