[Pkg-mpd-commits] [pkg-mpd] branch master updated (bbf0915 -> db29be6)

Florian Schlichting fsfs at moszumanska.debian.org
Sat Mar 21 00:29:52 UTC 2015


This is an automated email from the git hooks/post-receive script.

fsfs pushed a change to branch master
in repository pkg-mpd.

      from  bbf0915   Disable libmp4v2 due to incompatible license (closes: #767504)
       new  ab3ea6b   Non-maintainer upload (0.19.1-1.1)
       new  73a2b9d   Imported Upstream version 0.19.9
       new  91bf5a9   Merge tag 'upstream/0.19.9'
       new  032ec2f   Import Upstream version 0.19.9
       new  d5a472a   remove (now) unrecognized option to disable mp4v2
       new  38d94fe   Update copyright years
       new  bf3264c   remove db_file check in init script, as mpd can use a remote db now (closes: #775695 - thanks Leandro Noferini!)
       new  269a75f   also disable mpd.socket when disabling mpd.service (closes: #769951)
       new  be4db2b   document necessity for systemctl disable (until #746580 is fixed)
       new  fdeabc5   disable mpd for (new) systemd units if START_MPD was not true
       new  a04030a   Protect /usr when running under systemd (closes: #771634)
       new  5dc2449   Allow parallel build
       new  db29be6   prepare changelog for upload to experimental

The 13 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 INSTALL                                            |   6 -
 Makefile.am                                        |  56 +-
 Makefile.in                                        | 879 +++++++++------------
 NEWS                                               | 136 ++++
 aclocal.m4                                         |   8 +-
 android/AndroidManifest.xml                        |  24 +
 android/build.py                                   | 433 ++++++++++
 android/custom_rules.xml                           |  11 +
 android/res/values/strings.xml                     |   5 +
 src/fs/Config.hxx => android/src/Bridge.java       |  15 +-
 src/tag/TagSettings.c => android/src/Loader.java   |  24 +-
 android/src/Main.java                              |  75 ++
 build/config.guess                                 | 192 +----
 build/config.sub                                   |  30 +-
 config.h.in                                        |  12 +-
 configure                                          | 595 +++++---------
 configure.ac                                       |  83 +-
 debian/README.Debian                               |   3 +-
 debian/changelog                                   |  22 +
 debian/copyright                                   |   4 +-
 debian/mpd.default                                 |   2 +-
 debian/mpd.init.d                                  |   5 +-
 debian/mpd.postinst                                |   6 +
 debian/mpd.preinst                                 |   1 +
 debian/patches/also-dis_en_able-socket.patch       |  12 +
 debian/patches/protect_system.patch                |  16 +
 debian/patches/series                              |   2 +
 debian/rules                                       |   3 +-
 doc/doxygen.conf                                   |   4 +-
 doc/mpd.conf.5                                     |  10 -
 doc/protocol.xml                                   |   3 +-
 doc/user.xml                                       | 139 +---
 m4/faad.m4                                         |  31 +-
 m4/mpd_depends.m4                                  |   9 +
 src/Compiler.h                                     |  34 +-
 src/Idle.cxx                                       |   3 +
 src/LogBackend.cxx                                 |   6 +
 src/LogInit.cxx                                    |   3 +
 src/Main.cxx                                       |  29 +-
 src/Main.hxx                                       |  11 -
 src/PlaylistFile.cxx                               |   4 +
 src/SongFilter.cxx                                 |   3 +
 src/SongLoader.cxx                                 |   3 +
 src/TagStream.cxx                                  |   3 +-
 src/archive/plugins/ZzipArchivePlugin.cxx          |   9 +-
 src/client/Client.hxx                              |   2 +-
 src/client/ClientFile.cxx                          |   2 +-
 src/client/ClientProcess.cxx                       |   6 +-
 src/command/QueueCommands.cxx                      |  11 +-
 src/db/Count.cxx                                   |   2 +-
 src/db/plugins/LazyDatabase.hxx                    |   2 +-
 src/db/plugins/ProxyDatabasePlugin.cxx             |   8 +-
 src/db/plugins/simple/SimpleDatabasePlugin.cxx     |  11 +-
 src/db/plugins/simple/SimpleDatabasePlugin.hxx     |   6 +-
 src/db/plugins/upnp/Directory.cxx                  |   1 +
 src/db/plugins/upnp/UpnpDatabasePlugin.cxx         |   6 +-
 src/db/update/Walk.cxx                             |   2 +-
 src/decoder/DecoderList.cxx                        |   4 -
 src/decoder/DecoderPlugin.cxx                      |   6 +
 src/decoder/DecoderThread.cxx                      |   3 +-
 src/decoder/plugins/AudiofileDecoderPlugin.cxx     |   2 +-
 src/decoder/plugins/DsdLib.cxx                     |  22 +-
 src/decoder/plugins/FaadDecoderPlugin.cxx          |  12 +-
 src/decoder/plugins/FfmpegDecoderPlugin.cxx        |  21 +-
 src/decoder/plugins/MadDecoderPlugin.cxx           |   2 +-
 src/decoder/plugins/Mp4v2DecoderPlugin.cxx         | 338 --------
 src/decoder/plugins/Mp4v2DecoderPlugin.hxx         |  25 -
 src/decoder/plugins/OpusDecoderPlugin.cxx          |  94 ++-
 src/event/DeferredMonitor.hxx                      |   3 -
 src/event/Loop.cxx                                 |   3 +-
 src/event/ServerSocket.cxx                         |   2 +-
 src/filter/plugins/ChainFilterPlugin.cxx           |   9 +-
 src/filter/plugins/NormalizeFilterPlugin.cxx       |   9 +-
 src/filter/plugins/ReplayGainFilterPlugin.cxx      |   9 +-
 src/filter/plugins/RouteFilterPlugin.cxx           |   9 +-
 src/filter/plugins/VolumeFilterPlugin.cxx          |   9 +-
 src/fs/AllocatedPath.cxx                           |   6 +-
 src/fs/Charset.cxx                                 |   9 +-
 src/fs/Traits.cxx                                  |   6 +
 src/fs/Traits.hxx                                  |  16 +
 src/fs/io/FileOutputStream.cxx                     |   2 +
 src/input/AsyncInputStream.cxx                     |  10 +-
 src/input/AsyncInputStream.hxx                     |   4 +
 src/{fs => input}/Domain.cxx                       |   2 +-
 src/{lib/zlib => input}/Domain.hxx                 |   6 +-
 src/input/Init.cxx                                 |   2 +-
 src/input/InputStream.cxx                          |   3 +
 src/input/InputStream.hxx                          |   4 +
 src/input/Open.cxx                                 |   3 +-
 src/input/Registry.cxx                             |   7 -
 src/input/TextInputStream.cxx                      |  20 +-
 src/input/plugins/AlsaInputPlugin.cxx              |   2 +
 src/input/plugins/CurlInputPlugin.cxx              |  38 +-
 src/input/plugins/DespotifyInputPlugin.cxx         | 227 ------
 src/input/plugins/DespotifyInputPlugin.hxx         |  25 -
 src/input/plugins/MmsInputPlugin.cxx               |   9 +-
 src/java/File.hxx                                  |   2 +-
 src/lib/despotify/DespotifyUtils.cxx               | 153 ----
 src/lib/despotify/DespotifyUtils.hxx               |  71 --
 src/lib/icu/Collate.cxx                            |   6 +
 src/lib/nfs/Blocking.cxx                           |   7 +-
 src/lib/nfs/Blocking.hxx                           |   9 +-
 src/lib/nfs/Cancellable.hxx                        |   6 +
 src/lib/nfs/Connection.cxx                         | 161 +++-
 src/lib/nfs/Connection.hxx                         |  33 +-
 src/lib/nfs/FileReader.cxx                         |  38 +-
 src/lib/nfs/FileReader.hxx                         |   7 +
 src/lib/nfs/Manager.cxx                            |  30 +-
 src/lib/nfs/Manager.hxx                            |  33 +-
 src/lib/upnp/ContentDirectoryService.cxx           |   2 +-
 src/lib/upnp/Discovery.cxx                         |   1 +
 src/ls.cxx                                         |   3 -
 src/osx/OSXMain.cxx                                |  37 -
 src/output/Init.cxx                                |   1 +
 src/output/Internal.hxx                            |   5 +
 src/output/OutputThread.cxx                        |  40 +
 src/output/plugins/RoarOutputPlugin.cxx            |   2 +-
 src/output/plugins/ShoutOutputPlugin.cxx           |   2 +-
 src/pcm/ChannelsConverter.cxx                      |   2 +-
 src/pcm/FormatConverter.cxx                        |  34 +-
 src/pcm/PcmConvert.cxx                             |  27 +-
 src/pcm/SoxrResampler.cxx                          |   3 +-
 src/playlist/PlaylistRegistry.cxx                  |  13 +-
 src/playlist/Print.cxx                             |  13 +-
 src/playlist/plugins/DespotifyPlaylistPlugin.cxx   | 142 ----
 src/playlist/plugins/DespotifyPlaylistPlugin.hxx   |  25 -
 src/playlist/plugins/EmbeddedCuePlaylistPlugin.cxx |   2 +-
 src/playlist/plugins/ExtM3uPlaylistPlugin.cxx      |   1 +
 src/playlist/plugins/M3uPlaylistPlugin.cxx         |   1 +
 src/storage/plugins/NfsStorage.cxx                 |   3 +-
 src/system/Clock.cxx                               |  12 +-
 src/tag/Set.cxx                                    |   2 +
 src/tag/TagBuilder.cxx                             |  20 +-
 src/thread/Id.hxx                                  |   4 +-
 src/thread/Name.hxx                                |  23 +-
 src/util/ASCII.hxx                                 |  26 +-
 src/util/Alloc.cxx                                 |  11 +-
 src/util/HugeAllocator.hxx                         |   5 +-
 src/util/Manual.hxx                                |   4 +-
 src/util/UriUtil.cxx                               |  20 +
 src/util/UriUtil.hxx                               |  11 +
 test/DumpDatabase.cxx                              |   4 +
 test/FakeDecoderAPI.cxx                            |   6 +
 test/read_mixer.cxx                                |   5 +
 test/run_input.cxx                                 |  20 +-
 test/test_archive.cxx                              |  14 +-
 test/test_util.cxx                                 |  19 +
 test/visit_archive.cxx                             |   4 +
 148 files changed, 2401 insertions(+), 2730 deletions(-)
 create mode 100644 android/AndroidManifest.xml
 create mode 100755 android/build.py
 create mode 100644 android/custom_rules.xml
 create mode 100644 android/res/values/strings.xml
 copy src/fs/Config.hxx => android/src/Bridge.java (81%)
 copy src/tag/TagSettings.c => android/src/Loader.java (72%)
 create mode 100644 android/src/Main.java
 create mode 100644 debian/patches/also-dis_en_able-socket.patch
 create mode 100644 debian/patches/protect_system.patch
 create mode 100644 m4/mpd_depends.m4
 delete mode 100644 src/decoder/plugins/Mp4v2DecoderPlugin.cxx
 delete mode 100644 src/decoder/plugins/Mp4v2DecoderPlugin.hxx
 copy src/{fs => input}/Domain.cxx (96%)
 copy src/{lib/zlib => input}/Domain.hxx (90%)
 delete mode 100644 src/input/plugins/DespotifyInputPlugin.cxx
 delete mode 100644 src/input/plugins/DespotifyInputPlugin.hxx
 delete mode 100644 src/lib/despotify/DespotifyUtils.cxx
 delete mode 100644 src/lib/despotify/DespotifyUtils.hxx
 delete mode 100644 src/osx/OSXMain.cxx
 delete mode 100644 src/playlist/plugins/DespotifyPlaylistPlugin.cxx
 delete mode 100644 src/playlist/plugins/DespotifyPlaylistPlugin.hxx

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mpd/pkg-mpd.git



More information about the Pkg-mpd-commits mailing list