Description: correct build system (setup.py)
 The setup.py file inherits from the wrong base class and hence the build files.
 This patch corrects this error. It can be removed with the next version of
 GladTeX, it has been applied upstream too.
Author: Sebastian Humenda <shumenda@gmx.de>
Last-Update: <2016-10-18>

Index: gladtex/setup.py
===================================================================
--- gladtex.orig/setup.py
+++ gladtex/setup.py
@@ -1,5 +1,5 @@
-import distutils.command.install_scripts, distutils.command.build
-from distutils.core import setup, Command
+import distutils.command.install_scripts, distutils.command.build, distutils.command.clean
+from distutils.core import setup
 import os
 import shutil
 import sys
@@ -22,7 +22,7 @@ class ScriptInstaller(distutils.command.
                 shutil.move(script, script[:-3])
 
 #pylint: disable=attribute-defined-outside-init
-class CleanCommand(Command):
+class CleanCommand(distutils.command.clean.clean):
     description = "clean all build files, including __pycache__ and others"
     user_options = []
     def initialize_options(self):
