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-3) unstable; urgency=medium
 .
   * Update standards-version to 4.4.0.
   * Add debian/gbp.conf.
   * Remove X-Python{,3}-Version as no longer necessary to build.
   * Bump dh compat to 11.
   * Address hardening-no-bindnow lintian warning, by turning on hardening build flags.
   * Move debug packages to priority optional as extra has not existed for a long time.
   * Bump dpkg-dev build dep for DEB_BUILD_MAINT_OPTIONS.
   * Add autopkgtest.
   * Remove unused debian/dirs
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: 2019-11-19

--- /dev/null
+++ pymad-0.10/.travis.yml
@@ -0,0 +1,15 @@
+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:
+ - "3.7"
+ - "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
@@ -0,0 +1,3 @@
+mad_lib_dir = /usr/local/lib
+mad_libs = mad
+mad_include_dir = /usr/local/include
--- /dev/null
+++ pymad-0.10/setup.cfg
@@ -0,0 +1,3 @@
+[build_ext]
+library_dirs=/usr/local/lib
+include_dirs=/usr/local/include
