Received: by mail.netbsd.org (Postfix, from userid 605) id 8D60C84D43; Mon, 27 Jun 2022 15:57:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C599E84D36 for ; Mon, 27 Jun 2022 15:57:05 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id QbkwRUQKrC1A for ; Mon, 27 Jun 2022 15:57:05 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D4F6E84E86 for ; Mon, 27 Jun 2022 15:57:04 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8580DFB1A; Mon, 27 Jun 2022 15:59:15 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1656345555113150" MIME-Version: 1.0 Date: Mon, 27 Jun 2022 15:59:15 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/audio/musicpd To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20220627155915.8580DFB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1656345555113150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Jun 27 15:59:15 UTC 2022 Modified Files: pkgsrc/audio/musicpd: Makefile options.mk Log Message: musicpd: switch to ffmpeg5 Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.264 -r1.265 pkgsrc/audio/musicpd/Makefile cvs rdiff -u -r1.40 -r1.41 pkgsrc/audio/musicpd/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1656345555113150 Content-Disposition: inline Content-Length: 1264 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/audio/musicpd/Makefile diff -u pkgsrc/audio/musicpd/Makefile:1.264 pkgsrc/audio/musicpd/Makefile:1.265 --- pkgsrc/audio/musicpd/Makefile:1.264 Sat May 28 01:54:49 2022 +++ pkgsrc/audio/musicpd/Makefile Mon Jun 27 15:59:15 2022 @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.264 2022/05/28 01:54:49 gutteridge Exp $ +# $NetBSD: Makefile,v 1.265 2022/06/27 15:59:15 wiz Exp $ DISTNAME= mpd-0.23.7 PKGNAME= ${DISTNAME:S/mpd/musicpd/} +PKGREVISION= 1 CATEGORIES= audio MASTER_SITES= https://www.musicpd.org/download/mpd/${PKGVERSION_NOREV:R}/ EXTRACT_SUFX= .tar.xz Index: pkgsrc/audio/musicpd/options.mk diff -u pkgsrc/audio/musicpd/options.mk:1.40 pkgsrc/audio/musicpd/options.mk:1.41 --- pkgsrc/audio/musicpd/options.mk:1.40 Wed May 18 08:43:06 2022 +++ pkgsrc/audio/musicpd/options.mk Mon Jun 27 15:59:15 2022 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.40 2022/05/18 08:43:06 wiz Exp $ +# $NetBSD: options.mk,v 1.41 2022/06/27 15:59:15 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.musicpd @@ -83,7 +83,7 @@ MESON_ARGS+= -Dfaad=disabled .endif .if !empty(PKG_OPTIONS:Mffmpeg) -. include "../../multimedia/ffmpeg4/buildlink3.mk" +. include "../../multimedia/ffmpeg5/buildlink3.mk" .else MESON_ARGS+= -Dffmpeg=disabled .endif --_----------=_1656345555113150--