From owner-svn-ports-all@FreeBSD.ORG Wed Jan 21 10:18:18 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C70F4F6; Wed, 21 Jan 2015 10:18:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F075A932; Wed, 21 Jan 2015 10:18:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0LAIHIG012725; Wed, 21 Jan 2015 10:18:17 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0LAIHut012721; Wed, 21 Jan 2015 10:18:17 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201501211018.t0LAIHut012721@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Wed, 21 Jan 2015 10:18:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377583 - in head/textproc/yodl: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2015 10:18:18 -0000 Author: bofh Date: Wed Jan 21 10:18:16 2015 New Revision: 377583 URL: https://svnweb.freebsd.org/changeset/ports/377583 QAT: https://qat.redports.org/buildarchive/r377583/ Log: textproc/yodl: Update version 3.04.00=>3.05.00 - Add LICENSE (GPLv3) - Take MAINTAINERSHIP Differential Revision: https://reviews.freebsd.org/D1567 Approved by: bapt(mentor) Added: head/textproc/yodl/files/patch-src_verbinsert_verbinsert.cc (contents, props changed) Modified: head/textproc/yodl/Makefile head/textproc/yodl/distinfo Modified: head/textproc/yodl/Makefile ============================================================================== --- head/textproc/yodl/Makefile Wed Jan 21 09:48:47 2015 (r377582) +++ head/textproc/yodl/Makefile Wed Jan 21 10:18:16 2015 (r377583) @@ -2,15 +2,17 @@ # $FreeBSD$ PORTNAME= yodl -PORTVERSION= 3.04.00 +PORTVERSION= 3.05.00 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} DISTNAME= ${PORTNAME}_${PORTVERSION} EXTRACT_SUFX= .orig.tar.gz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= bofh@FreeBSD.org COMMENT= Easy to use but powerful document formatting/preparation language +LICENSE= GPLv3 + RUN_DEPENDS= bash:${PORTSDIR}/shells/bash \ ${LOCALBASE}/bin/getopt:${PORTSDIR}/misc/getopt BUILD_DEPENDS= icmake:${PORTSDIR}/devel/icmake \ Modified: head/textproc/yodl/distinfo ============================================================================== --- head/textproc/yodl/distinfo Wed Jan 21 09:48:47 2015 (r377582) +++ head/textproc/yodl/distinfo Wed Jan 21 10:18:16 2015 (r377583) @@ -1,2 +1,2 @@ -SHA256 (yodl_3.04.00.orig.tar.gz) = 66b317877906e165506796f9342a1adf931376f7d8b6990b2d2ff12107685893 -SIZE (yodl_3.04.00.orig.tar.gz) = 296554 +SHA256 (yodl_3.05.00.orig.tar.gz) = 2f360062a85f9359207088b2586da863e2b111428f3e12486cd34c9de12b1b8a +SIZE (yodl_3.05.00.orig.tar.gz) = 301612 Added: head/textproc/yodl/files/patch-src_verbinsert_verbinsert.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/yodl/files/patch-src_verbinsert_verbinsert.cc Wed Jan 21 10:18:16 2015 (r377583) @@ -0,0 +1,34 @@ +--- src/verbinsert/verbinsert.cc.orig 2015-01-20 18:56:00.226610975 +0600 ++++ src/verbinsert/verbinsert.cc 2015-01-20 18:56:46.890607566 +0600 +@@ -2,6 +2,7 @@ + #include + #include + #include ++#include + #include + + using namespace std; +@@ -37,19 +38,19 @@ + continue; + + case 's': +- indent.append(stoul(optarg), ' '); ++ indent.append(strtoul(optarg, NULL, 0), ' '); + continue; + + case 't': +- indent.insert(0, stoul(optarg), '\t'); ++ indent.insert(0, strtoul(optarg, NULL, 0), '\t'); + continue; + + case 'S': +- vindent.append(stoul(optarg), ' '); ++ vindent.append(strtoul(optarg, NULL, 0), ' '); + continue; + + case 'T': +- vindent.insert(0, stoul(optarg), '\t'); ++ vindent.insert(0, strtoul(optarg, NULL, 0), '\t'); + continue; + + case 'N':