Date: Sun, 26 Jan 2014 12:25:40 +0000 (UTC) From: Thomas Zander <riggs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r341166 - in branches/2014Q1/multimedia/oggvideotools: . files Message-ID: <201401261225.s0QCPePl023521@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: riggs Date: Sun Jan 26 12:25:40 2014 New Revision: 341166 URL: http://svnweb.freebsd.org/changeset/ports/341166 QAT: https://qat.redports.org/buildarchive/r341166/ Log: MFH: r341157 Fix runtime issue: Non-integer frame rates could not be handled - Fix incorrect handling of input arguments (new patch file patch-src_cmdlineextractor.h) Submitter proposed fix after talking to upstream author - Bump PORTREVISION PR: ports/185738 Submitted by: Sergey Chernikov (s.bilberry@gmail.com) Approved by: portmgr (antoine), thierry (mentor) Added: branches/2014Q1/multimedia/oggvideotools/files/patch-src_cmdlineextractor.h - copied unchanged from r341157, head/multimedia/oggvideotools/files/patch-src_cmdlineextractor.h Modified: branches/2014Q1/multimedia/oggvideotools/Makefile Directory Properties: branches/2014Q1/ (props changed) Modified: branches/2014Q1/multimedia/oggvideotools/Makefile ============================================================================== --- branches/2014Q1/multimedia/oggvideotools/Makefile Sun Jan 26 12:17:39 2014 (r341165) +++ branches/2014Q1/multimedia/oggvideotools/Makefile Sun Jan 26 12:25:40 2014 (r341166) @@ -3,7 +3,7 @@ PORTNAME= oggvideotools PORTVERSION= 0.8a -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTNAME} Copied: branches/2014Q1/multimedia/oggvideotools/files/patch-src_cmdlineextractor.h (from r341157, head/multimedia/oggvideotools/files/patch-src_cmdlineextractor.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2014Q1/multimedia/oggvideotools/files/patch-src_cmdlineextractor.h Sun Jan 26 12:25:40 2014 (r341166, copy of r341157, head/multimedia/oggvideotools/files/patch-src_cmdlineextractor.h) @@ -0,0 +1,11 @@ +--- src/cmdlineextractor.h.orig 2010-05-30 21:11:10.000000000 +0200 ++++ src/cmdlineextractor.h 2014-01-25 18:46:51.620972183 +0100 +@@ -20,7 +20,7 @@ + #include "oggComment.h" + #include "blendElement.h" + +-const std::string validChars ( "0123456789,x" ); ++const std::string validChars ( "0123456789,x:" ); + const std::string + validTextChars ( "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 /\\.,=;:-_" ); +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401261225.s0QCPePl023521>