From owner-svn-ports-head@freebsd.org Tue Jul 31 23:22:42 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C965E106812C; Tue, 31 Jul 2018 23:22:42 +0000 (UTC) (envelope-from bar@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7784F8315E; Tue, 31 Jul 2018 23:22:42 +0000 (UTC) (envelope-from bar@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 567C21A673; Tue, 31 Jul 2018 23:22:42 +0000 (UTC) (envelope-from bar@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6VNMgOZ010752; Tue, 31 Jul 2018 23:22:42 GMT (envelope-from bar@FreeBSD.org) Received: (from bar@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6VNMfUi010749; Tue, 31 Jul 2018 23:22:41 GMT (envelope-from bar@FreeBSD.org) Message-Id: <201807312322.w6VNMfUi010749@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bar set sender to bar@FreeBSD.org using -f From: Barbara Guida Date: Tue, 31 Jul 2018 23:22:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476028 - in head/multimedia: avidemux-cli avidemux-plugins avidemux/files X-SVN-Group: ports-head X-SVN-Commit-Author: bar X-SVN-Commit-Paths: in head/multimedia: avidemux-cli avidemux-plugins avidemux/files X-SVN-Commit-Revision: 476028 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Jul 2018 23:22:43 -0000 Author: bar Date: Tue Jul 31 23:22:41 2018 New Revision: 476028 URL: https://svnweb.freebsd.org/changeset/ports/476028 Log: Bump PORTREVISION after r464084. While here, add a patch for multimedia/avidemux-plugins to fix the build with gcc7. Reviewed by: gerald Added: head/multimedia/avidemux/files/patch-avidemux__plugins_ADM__muxers_muxerMp4v2_libmp4v2_src_rtphint.cpp (contents, props changed) Modified: head/multimedia/avidemux-cli/Makefile head/multimedia/avidemux-plugins/Makefile Modified: head/multimedia/avidemux-cli/Makefile ============================================================================== --- head/multimedia/avidemux-cli/Makefile Tue Jul 31 22:14:54 2018 (r476027) +++ head/multimedia/avidemux-cli/Makefile Tue Jul 31 23:22:41 2018 (r476028) @@ -2,7 +2,7 @@ PORTNAME= avidemux PORTVERSION= ${AVIDEMUX_VERSION} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= multimedia PKGNAMESUFFIX= -cli Modified: head/multimedia/avidemux-plugins/Makefile ============================================================================== --- head/multimedia/avidemux-plugins/Makefile Tue Jul 31 22:14:54 2018 (r476027) +++ head/multimedia/avidemux-plugins/Makefile Tue Jul 31 23:22:41 2018 (r476028) @@ -3,7 +3,7 @@ PORTNAME= avidemux PORTVERSION= ${AVIDEMUX_VERSION} -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= multimedia PKGNAMESUFFIX= -plugins Added: head/multimedia/avidemux/files/patch-avidemux__plugins_ADM__muxers_muxerMp4v2_libmp4v2_src_rtphint.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/avidemux/files/patch-avidemux__plugins_ADM__muxers_muxerMp4v2_libmp4v2_src_rtphint.cpp Tue Jul 31 23:22:41 2018 (r476028) @@ -0,0 +1,11 @@ +--- avidemux_plugins/ADM_muxers/muxerMp4v2/libmp4v2/src/rtphint.cpp.orig 2016-01-29 09:47:25.000000000 +0100 ++++ avidemux_plugins/ADM_muxers/muxerMp4v2/libmp4v2/src/rtphint.cpp 2018-07-30 08:44:59.947567000 +0200 +@@ -339,7 +339,7 @@ + pSlash = strchr(pSlash, '/'); + if (pSlash != NULL) { + pSlash++; +- if (pSlash != '\0') { ++ if (*pSlash != '\0') { + length = (uint32_t)strlen(pRtpMap) - (pSlash - pRtpMap); + *ppEncodingParams = (char *)MP4Calloc(length + 1); + strncpy(*ppEncodingParams, pSlash, length);