1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-18 19:49:40 +00:00

audio/musicpc: update to 0.34

ChangeLog: https://raw.githubusercontent.com/MusicPlayerDaemon/mpc/v0.34/NEWS

 * add commands "albumart", "readpicture"
 * don't print status after error
 * custom status format
 * support grouping "list" results
 * meson: auto-build libmpdclient if not available
 * require libmpdclient 2.16 or newer
 * require MPD 0.21 or newer

PR:	263938
Reported by:	uzsolt@uzsolt.hu (maintainer)
This commit is contained in:
Zsolt Udvari 2022-05-13 10:16:04 +02:00 committed by Fernando Apesteguía
parent 8178090534
commit 0d68921b25
3 changed files with 12 additions and 12 deletions

View File

@ -1,8 +1,7 @@
# Created by: Mark Reidel <ports@mark.reidle.info>
PORTNAME= musicpc
DISTVERSION= 0.33
PORTREVISION= 1
DISTVERSION= 0.34
CATEGORIES= audio
MASTER_SITES= http://www.musicpd.org/download/mpc/0/
DISTNAME= mpc-${PORTVERSION}
@ -13,23 +12,24 @@ COMMENT= Command line client for the musicpd
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= rsync>0:net/rsync
LIB_DEPENDS= libmpdclient.so:audio/libmpdclient
USES= meson pkgconfig tar:xz
MESON_ARGS= --mandir=${MANPREFIX}
PORTDOCS= *
OPTIONS_DEFINE= DOCS ICONV
OPTIONS_DEFAULT= DOCS ICONV
DOCS_USES= python:env
DOCS_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sphinx>=0,1:textproc/py-sphinx@${PY_FLAVOR}
DOCS_USES= python:env
DOCS_MESON_ENABLED= documentation
ICONV_USES= iconv
ICONV_LDFLAGS= -L${ICONV_PREFIX}/lib ${ICONV_LIB}
ICONV_MESON_ENABLED= iconv
PORTDOCS= *
ICONV_LDFLAGS= -L${ICONV_PREFIX}/lib ${ICONV_LIB}
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1572698875
SHA256 (mpc-0.33.tar.xz) = 4f40ccbe18f5095437283cfc525a97815e983cbfd3a29e48ff610fa4f1bf1296
SIZE (mpc-0.33.tar.xz) = 45044
TIMESTAMP = 1652348508
SHA256 (mpc-0.34.tar.xz) = 691e3f3654bc10d022bb0310234d0bc2d8c075a698f09924d9ebed8f506fda20
SIZE (mpc-0.34.tar.xz) = 47940

View File

@ -1,12 +1,12 @@
--- meson.build.orig 2019-10-31 15:01:59 UTC
--- meson.build.orig 2022-05-12 09:46:08 UTC
+++ meson.build
@@ -1,4 +1,4 @@
-project('mpc', 'c',
+project('musicpc', 'c',
version: '0.33',
version: '0.34',
meson_version: '>= 0.47',
default_options: [
@@ -111,13 +111,13 @@ executable('mpc',
@@ -124,13 +124,13 @@ executable('mpc',
install: true
)