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.
 .
 mps-youtube (0.2.7.1-3) unstable; urgency=medium
 .
   * use capitals in desktop file
Author: anticapitalista <antix@operamail.com>

---
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-02-18

--- mps-youtube-0.2.7.1.orig/mps-youtube.desktop
+++ mps-youtube-0.2.7.1/mps-youtube.desktop
@@ -1,5 +1,5 @@
 [Desktop Entry]
-Name=mps-youtube
+Name=MPS-YouTube
 GenericName=Music Player
 Keywords=Audio;Song;Podcast;Playlist;youtube.com;
 Exec=mpsyt %U
--- /dev/null
+++ mps-youtube-0.2.7.1/mps_youtube.egg-info/PKG-INFO
@@ -0,0 +1,207 @@
+Metadata-Version: 1.1
+Name: mps-youtube
+Version: 0.2.7.1
+Summary: Terminal based YouTube player and downloader
+Home-page: http://github.com/np1/mps-youtube
+Author: np1
+Author-email: np1nagev@gmail.com
+License: UNKNOWN
+Download-URL: https://github.com/np1/mps-youtube/tarball/master
+Description: mps-youtube
+        ===========
+        
+        .. image:: https://img.shields.io/pypi/v/mps-youtube.svg
+            :target: https://pypi.python.org/pypi/mps-youtube
+        .. image:: https://img.shields.io/pypi/dm/mps-youtube.svg
+            :target: https://pypi.python.org/pypi/mps-youtube
+        .. image:: https://img.shields.io/pypi/wheel/mps-youtube.svg
+            :target: http://pythonwheels.com/
+            :alt: Wheel Status
+        
+        
+        Features
+        --------
+        - Search and play audio/video from YouTube
+        - Search tracks of albums by album title
+        - Search and import YouTube playlists
+        - Create and save local playlists
+        - Download audio/video
+        - Convert to mp3 & other formats (requires ffmpeg or avconv)
+        - View video comments
+        - Works with Python 3.x
+        - Works with Windows, Linux and Mac OS X 
+        - Requires mplayer or mpv
+        
+        This project is based on `mps <https://github.com/np1/mps>`_, a terminal based program to search, stream and download music.  This implementation uses YouTube as a source of content and can play and download video as well as audio.  The `pafy <https://github.com/np1/pafy>`_ library handles interfacing with YouTube.
+        
+        `FAQ / Troubleshooting common issues <https://github.com/np1/mps-youtube/wiki/Troubleshooting>`_
+        
+        Screenshots
+        -----------
+        
+        
+        Search
+        ~~~~~~
+        .. image:: http://np1.github.io/mpsyt-images2/std-search.png
+        
+        A standard search is performed by entering ``/`` followed by search terms.
+        
+        Local Playlists
+        ~~~~~~~~~~~~~~~
+        .. image:: http://np1.github.io/mpsyt-images2/local-playlists.png
+        
+        Search result items can easily be stored in local playlists.
+        
+        YouTube Playlists
+        ~~~~~~~~~~~~~~~~~
+        .. image:: http://np1.github.io/mpsyt-images2/playlist-search.png
+        
+        YouTube playlists can be searched and played or saved as local playlists.
+        
+        Download
+        ~~~~~~~~
+        .. image:: http://np1.github.io/mpsyt-images2/download.png
+        
+        Content can be downloaded in various formats and resolutions.
+        
+        Comments
+        ~~~~~~~~
+        .. image:: http://np1.github.io/mpsyt-images2/comments.png
+        
+        A basic comments browser is available to view YouTube user comments.
+        
+        Music Album Matching
+        ~~~~~~~~~~~~~~~~~~~~
+        
+        .. image:: http://np1.github.io/mpsyt-images2/album-1.png
+        
+        .. image:: http://np1.github.io/mpsyt-images2/album-2.png
+        
+        An album title can be specified and mps-youtube will attempt to find matches for each track of the album, based on title and duration.  Type ``help search`` for more info.  
+        
+        Customisation
+        ~~~~~~~~~~~~~
+        
+        .. image:: http://np1.github.io/mpsyt-images2/customisation2.png
+        
+        Search results can be customised to display additional fields and ordered by various criteria.
+        
+        This configuration was set up using the following commands::
+        
+            set order views
+            set columns user:14 date comments rating likes dislikes category:9 views
+        
+        Type ``help config`` for help on configuration options
+        
+        
+        
+        Installation
+        ------------
+        
+        Using `pip <http://www.pip-installer.org>`_::
+            
+            [sudo] pip3 install mps-youtube
+        
+        Installing youtube_dl is highly recommended::
+        
+            [sudo] pip3 install youtube_dl
+        
+        Additional Mac OS X installation notes
+        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+            
+        Install mplayer with `MacPorts <http://www.macports.org>`_::
+        
+            sudo port install MPlayer
+        
+        Or with `Homebrew <http://brew.sh>`_::
+        
+            brew install mplayer
+        
+        Additional Windows installation notes
+        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+        
+        As an alternative to installing with pip, there is a standalone binary available. Go to `Releases <https://github.com/np1/mps-youtube/releases>`_ and download mpsyt-VERSION.exe under downloads for the latest release.
+        
+        Install the python `colorama <https://pypi.python.org/pypi/colorama>`_ module to get colors (optional)::
+        
+            pip3 install colorama
+        
+        Download mplayer for your CPU type from the "Build Selection table" `here <http://oss.netfarm.it/mplayer-win32.php>`_.
+        
+        Extract the ``mplayer.exe`` file, saving it to the folder that ``mpsyt.exe`` resides in (usually ``C:\PythonXX\Scripts\``) or to a folder in the system path.
+        
+        Alternatively to mplayer, use ``mpv.exe`` which can be downloaded from: http://mpv.io/installation/
+        
+        Run via Docker container
+        ~~~~~~~~~~~~~~~~~~~~~~~~
+        
+        Using `Docker <http://www.docker.com>`_, run with::
+        
+            sudo docker run -v /dev/snd:/dev/snd -it --rm --privileged --name mpsyt mpsyt
+        
+        Additional Docker notes
+        ~~~~~~~~~~~~~~~~~~~~~~~
+        
+        If you would like to locally build the container you can run the following steps
+        
+        Check out this repo::
+        
+            git clone https://github.com/np1/mps-youtube.git
+        
+        Enter the directory and run docker build::
+        
+            cd mps-youtube
+            sudo docker build -t mpsyt .
+        
+        Now run the container interactively with::
+        
+            sudo docker run -v /dev/snd:/dev/snd -it --rm --privileged --name mpsyt mpsyt
+        
+        In order to have access to the local sound device (/dev/snd) the container needs to be privileged.
+        
+        Upgrading
+        ---------
+        
+        Upgrade pip installation::
+        
+            [sudo] pip3 install mps-youtube --upgrade
+        
+        Usage
+        -----
+        
+        mps-youtube is run on the command line using the command::
+            
+            mpsyt
+            
+        Enter ``h`` from within the program for help.
+        
+        IRC
+        ---
+        
+        An IRC channel `#mps-youtube` for the project is available on Freenode (chat.freenode.net:6697).
+        
+Keywords: video,music,audio,youtube,stream,download
+Platform: UNKNOWN
+Classifier: Topic :: Utilities
+Classifier: Topic :: Internet :: WWW/HTTP
+Classifier: Topic :: Multimedia :: Sound/Audio :: Players
+Classifier: Topic :: Multimedia :: Video
+Classifier: Environment :: Console
+Classifier: Environment :: Win32 (MS Windows)
+Classifier: Environment :: MacOS X
+Classifier: Operating System :: POSIX :: Linux
+Classifier: Operating System :: MacOS
+Classifier: Operating System :: MacOS :: MacOS 9
+Classifier: Operating System :: MacOS :: MacOS X
+Classifier: Operating System :: Microsoft
+Classifier: Operating System :: Microsoft :: Windows :: Windows 7
+Classifier: Operating System :: Microsoft :: Windows :: Windows XP
+Classifier: Operating System :: Microsoft :: Windows :: Windows Vista
+Classifier: Intended Audience :: End Users/Desktop
+Classifier: Programming Language :: Python
+Classifier: Programming Language :: Python :: 3
+Classifier: Programming Language :: Python :: 3.3
+Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3 :: Only
+Classifier: Development Status :: 5 - Production/Stable
+Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
--- /dev/null
+++ mps-youtube-0.2.7.1/mps_youtube.egg-info/SOURCES.txt
@@ -0,0 +1,40 @@
+CHANGELOG
+LICENSE
+MANIFEST.in
+README.rst
+mps-youtube.desktop
+setup.py
+mps_youtube/__init__.py
+mps_youtube/c.py
+mps_youtube/cache.py
+mps_youtube/config.py
+mps_youtube/content.py
+mps_youtube/g.py
+mps_youtube/helptext.py
+mps_youtube/history.py
+mps_youtube/init.py
+mps_youtube/main.py
+mps_youtube/mpris.py
+mps_youtube/paths.py
+mps_youtube/player.py
+mps_youtube/playlist.py
+mps_youtube/playlists.py
+mps_youtube/screen.py
+mps_youtube/streams.py
+mps_youtube/terminalsize.py
+mps_youtube/util.py
+mps_youtube.egg-info/PKG-INFO
+mps_youtube.egg-info/SOURCES.txt
+mps_youtube.egg-info/dependency_links.txt
+mps_youtube.egg-info/entry_points.txt
+mps_youtube.egg-info/requires.txt
+mps_youtube.egg-info/top_level.txt
+mps_youtube/commands/__init__.py
+mps_youtube/commands/album_search.py
+mps_youtube/commands/config.py
+mps_youtube/commands/download.py
+mps_youtube/commands/local_playlist.py
+mps_youtube/commands/misc.py
+mps_youtube/commands/play.py
+mps_youtube/commands/search.py
+mps_youtube/commands/songlist.py
\ No newline at end of file
--- /dev/null
+++ mps-youtube-0.2.7.1/mps_youtube.egg-info/dependency_links.txt
@@ -0,0 +1 @@
+
--- /dev/null
+++ mps-youtube-0.2.7.1/mps_youtube.egg-info/entry_points.txt
@@ -0,0 +1,3 @@
+[console_scripts]
+mpsyt = mps_youtube:main.main
+
--- /dev/null
+++ mps-youtube-0.2.7.1/mps_youtube.egg-info/requires.txt
@@ -0,0 +1 @@
+pafy >= 0.3.82, != 0.4.0, != 0.4.1, != 0.4.2
--- /dev/null
+++ mps-youtube-0.2.7.1/mps_youtube.egg-info/top_level.txt
@@ -0,0 +1 @@
+mps_youtube
