Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 pymad (0.10-1) UNRELEASED; urgency=medium
 .
   * New upstream release.
Author: Jamie Wilkinson <jaq@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2017-08-12

--- /dev/null
+++ pymad-0.10/.travis.yml
@@ -0,0 +1,20 @@
+language: python
+install:
+ - travis_retry sudo apt-get update -qq
+ - travis_retry sudo apt-get install -y python-all-dev libmad0-dev python-setuptools
+script:
+ - python config_unix.py
+ - python setup.py build
+ - python -m compileall -f .
+python:
+ - "2.6"
+ - "2.7"
+ - "3.3"
+ - "3.4"
+ - "3.5"
+ - "3.6"
+ - "nightly" # currently points to 3.7-dev
+matrix:
+ fast_finish: true
+ allow_failures:
+  - python: nightly
--- /dev/null
+++ pymad-0.10/MANIFEST
@@ -0,0 +1,17 @@
+# file GENERATED by distutils, do NOT edit
+AUTHORS
+COPYING
+NEWS
+README.md
+THANKS
+config_unix.py
+setup.py
+src/madmodule.c
+src/madmodule.h
+src/pymadfile.c
+src/pymadfile.h
+src/xing.c
+src/xing.h
+test/madradio.py
+test/pymad_exc_fail.py
+test/test.py
--- /dev/null
+++ pymad-0.10/MANIFEST.in
@@ -0,0 +1,3 @@
+include config_unix.py AUTHORS COPYING README.md ChangeLog NEWS THANKS
+recursive-include src *.h
+include test/*.py
--- /dev/null
+++ pymad-0.10/setup.cfg
@@ -0,0 +1,3 @@
+[build_ext]
+library_dirs=/usr/local/lib
+include_dirs=/usr/local/include
--- /dev/null
+++ pymad-0.10/Setup
@@ -0,0 +1,3 @@
+mad_lib_dir = /usr/local/lib
+mad_libs = mad
+mad_include_dir = /usr/local/include
