[Pkg-mpd-commits] [pkg-mpc] branch master updated (728b3cb -> 7ba9068)

Florian Schlichting fsfs at moszumanska.debian.org
Mon Feb 12 20:57:00 UTC 2018


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

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

      from  728b3cb   prepare changelog for release
       new  e08f2af   New upstream version 0.29
       new  09cc484   Update upstream source from tag 'upstream/0.29'
       new  c7c3f27   Import new upstream version 0.29
       new  0a4bdbf   Update debian/copyright: autotools dropped, years
       new  f2789cc   Switch build from autotools to meson
       new  82cf0d8   Bump dh compat to level 11
       new  0d79c02   Declare compliance with Debian Policy 4.1.3
       new  d8c9163   Update for files moved from doc/ to contrib/, build manpage
       new  7691f2d   Enable all hardening buildflags
       new  7ba9068   prepare changelog for release

The 10 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:
 .travis.yml                           |   16 +
 AUTHORS                               |   19 +-
 INSTALL                               |   76 -
 Makefile.am                           |   76 -
 Makefile.in                           | 1406 -------
 NEWS                                  |    8 +
 README                                |   15 -
 README.rst                            |   46 +
 aclocal.m4                            | 1336 ------
 build/build.sh                        |    6 +
 build/configure.py                    |   86 +
 build/win32/cross-file.txt            |   15 +
 build/win32/pkg-config.sh             |    8 +
 build/win64/cross-file.txt            |   15 +
 build/win64/pkg-config.sh             |    8 +
 compile                               |  347 --
 config.h.in                           |   61 -
 configure                             | 7367 ---------------------------------
 configure.ac                          |  185 -
 {doc => contrib}/mpc-completion.bash  |    0
 {doc => contrib}/mpd-m3u-handler.sh   |    0
 {doc => contrib}/mpd-pls-handler.sh   |    0
 debian/changelog                      |   14 +-
 debian/compat                         |    2 +-
 debian/control                        |   12 +-
 debian/copyright                      |  110 +-
 debian/mpc.bash-completion            |    2 +-
 debian/mpc.examples                   |    3 +-
 debian/patches/Makefile.am.patch      |   17 -
 debian/patches/check-m4-subunit.patch |   19 -
 debian/patches/series                 |    2 -
 debian/rules                          |   20 +-
 depcomp                               |  708 ----
 doc/conf.py                           |  319 ++
 doc/index.rst                         |  371 ++
 doc/meson.build                       |   23 +
 doc/mpc.1                             |  299 --
 doc/mppledit                          |  114 -
 install-sh                            |  527 ---
 m4/ax_append_compile_flags.m4         |   65 -
 m4/ax_append_flag.m4                  |   71 -
 m4/ax_append_link_flags.m4            |   63 -
 m4/ax_check_compile_flag.m4           |   74 -
 m4/ax_check_link_flag.m4              |   74 -
 m4/ax_require_defined.m4              |   37 -
 m4/check.m4                           |  132 -
 meson.build                           |  129 +
 meson_options.txt                     |    8 +
 missing                               |  331 --
 src/Compiler.h                        |   21 +-
 src/args.c                            |    2 +-
 src/args.h                            |    2 +-
 src/charset.c                         |    2 +-
 src/charset.h                         |    2 +-
 src/command.c                         |  158 +-
 src/command.h                         |    9 +-
 src/format.c                          |    2 +-
 src/format.h                          |    2 +-
 src/idle.c                            |    2 +-
 src/idle.h                            |    2 +-
 src/list.c                            |    2 +-
 src/list.h                            |    2 +-
 src/main.c                            |   60 +-
 src/message.c                         |    2 +-
 src/message.h                         |    2 +-
 src/mpc.h                             |    2 +-
 src/options.c                         |    2 +-
 src/options.h                         |    4 +-
 src/output.c                          |  277 ++
 src/{tab.h => output.h}               |   22 +-
 src/password.c                        |    2 +-
 src/password.h                        |    2 +-
 src/path.c                            |    2 +-
 src/path.h                            |    2 +-
 src/queue.c                           |   20 +
 src/queue.h                           |    5 +-
 src/search.c                          |    2 +-
 src/search.h                          |    2 +-
 src/song_format.c                     |    8 +-
 src/song_format.h                     |    2 +-
 src/status.c                          |    2 +-
 src/status.h                          |    2 +-
 src/sticker.c                         |    2 +-
 src/sticker.h                         |    2 +-
 src/tab.c                             |    2 +-
 src/tab.h                             |    2 +-
 src/util.c                            |    2 +-
 src/util.h                            |    2 +-
 test/meson.build                      |   10 +
 89 files changed, 1517 insertions(+), 13777 deletions(-)
 create mode 100644 .travis.yml
 delete mode 100644 INSTALL
 delete mode 100644 Makefile.am
 delete mode 100644 Makefile.in
 delete mode 100644 README
 create mode 100644 README.rst
 delete mode 100644 aclocal.m4
 create mode 100755 build/build.sh
 create mode 100755 build/configure.py
 create mode 100644 build/win32/cross-file.txt
 create mode 100755 build/win32/pkg-config.sh
 create mode 100644 build/win64/cross-file.txt
 create mode 100755 build/win64/pkg-config.sh
 delete mode 100755 compile
 delete mode 100644 config.h.in
 delete mode 100755 configure
 delete mode 100644 configure.ac
 rename {doc => contrib}/mpc-completion.bash (100%)
 rename {doc => contrib}/mpd-m3u-handler.sh (100%)
 rename {doc => contrib}/mpd-pls-handler.sh (100%)
 delete mode 100644 debian/patches/Makefile.am.patch
 delete mode 100644 debian/patches/check-m4-subunit.patch
 delete mode 100644 debian/patches/series
 delete mode 100755 depcomp
 create mode 100644 doc/conf.py
 create mode 100644 doc/index.rst
 create mode 100644 doc/meson.build
 delete mode 100644 doc/mpc.1
 delete mode 100755 doc/mppledit
 delete mode 100755 install-sh
 delete mode 100644 m4/ax_append_compile_flags.m4
 delete mode 100644 m4/ax_append_flag.m4
 delete mode 100644 m4/ax_append_link_flags.m4
 delete mode 100644 m4/ax_check_compile_flag.m4
 delete mode 100644 m4/ax_check_link_flag.m4
 delete mode 100644 m4/ax_require_defined.m4
 delete mode 100644 m4/check.m4
 create mode 100644 meson.build
 create mode 100644 meson_options.txt
 delete mode 100755 missing
 create mode 100644 src/output.c
 copy src/{tab.h => output.h} (61%)
 create mode 100644 test/meson.build

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



More information about the Pkg-mpd-commits mailing list