Require libspotify 0.0.8 and pyspotify 1.2

This commit is contained in:
Stein Magnus Jodal 2011-06-07 16:04:26 +02:00
parent 20d3b48bb5
commit f35eb4aa9b
2 changed files with 20 additions and 16 deletions

View File

@ -10,8 +10,16 @@ v0.5.0 (in development)
No description yet. No description yet.
Please note that 0.5.0 requires some updated dependencies, as listed under
*Important changes* below.
**Important changes** **Important changes**
- If you use the Spotify backend, you *must* upgrade to libspotify 0.0.8 and
pyspotify 1.2. If you install from APT, libspotify and pyspotify will
automatically be upgraded. If you are not installing from APT, follow the
instructions at :doc:`/installation/libspotify/`.
- Mopidy now supports running with 1-n outputs at the same time. This feature - Mopidy now supports running with 1-n outputs at the same time. This feature
was mainly added to facilitate Shoutcast support, which Mopidy has also was mainly added to facilitate Shoutcast support, which Mopidy has also
gained. In its current state outputs can not be toggled during runtime. gained. In its current state outputs can not be toggled during runtime.

View File

@ -4,8 +4,8 @@ libspotify installation
Mopidy uses `libspotify Mopidy uses `libspotify
<http://developer.spotify.com/en/libspotify/overview/>`_ for playing music from <http://developer.spotify.com/en/libspotify/overview/>`_ for playing music from
the Spotify music service. To use :mod:`mopidy.backends.libspotify` you must the Spotify music service. To use :mod:`mopidy.backends.spotify` you must
install libspotify and `pyspotify <http://github.com/mopidy/pyspotify>`_. install libspotify and `pyspotify <http://pyspotify.mopidy.com/>`_.
.. note:: .. note::
@ -30,7 +30,7 @@ If you run a Debian based Linux distribution, like Ubuntu, see
http://apt.mopidy.com/ for how to the Mopidy APT archive as a software source http://apt.mopidy.com/ for how to the Mopidy APT archive as a software source
on your installation. Then, simply run:: on your installation. Then, simply run::
sudo apt-get install libspotify7 sudo apt-get install libspotify8
When libspotify has been installed, continue with When libspotify has been installed, continue with
:ref:`pyspotify_installation`. :ref:`pyspotify_installation`.
@ -39,14 +39,14 @@ When libspotify has been installed, continue with
On Linux from source On Linux from source
-------------------- --------------------
Download and install libspotify 0.0.7 for your OS and CPU architecture from Download and install libspotify 0.0.8 for your OS and CPU architecture from
https://developer.spotify.com/en/libspotify/. https://developer.spotify.com/en/libspotify/.
For 64-bit Linux the process is as follows:: For 64-bit Linux the process is as follows::
wget http://developer.spotify.com/download/libspotify/libspotify-0.0.7-linux6-x86_64.tar.gz wget http://developer.spotify.com/download/libspotify/libspotify-0.0.8-linux6-x86_64.tar.gz
tar zxfv libspotify-0.0.7-linux6-x86_64.tar.gz tar zxfv libspotify-0.0.8-linux6-x86_64.tar.gz
cd libspotify-0.0.7-linux6-x86_64/ cd libspotify-0.0.8-linux6-x86_64/
sudo make install prefix=/usr/local sudo make install prefix=/usr/local
sudo ldconfig sudo ldconfig
@ -103,14 +103,10 @@ Debian/Ubuntu systems run::
On OS X no additional dependencies are needed. On OS X no additional dependencies are needed.
Get the pyspotify code, and install it:: Then get, build, and install the latest releast of pyspotify using ``pip``::
wget --no-check-certificate -O pyspotify.tar.gz https://github.com/mopidy/pyspotify/tarball/mopidy sudo pip install -U pyspotify
tar zxfv pyspotify.tar.gz
cd pyspotify/
sudo python setup.py install
It is important that you install pyspotify from the ``mopidy`` branch of the Or using the older ``easy_install``::
``mopidy/pyspotify`` repository, as the upstream repository at
``winjer/pyspotify`` is not updated with changes needed to support e.g. sudo easy_install pyspotify
libspotify 0.0.7 and high bitrate audio.