From owner-svn-ports-all@freebsd.org Sat Nov 5 17:03:23 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DBACAF7571; Sat, 5 Nov 2016 17:03:23 +0000 (UTC) (envelope-from bapt@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 mx1.freebsd.org (Postfix) with ESMTPS id 04001F94; Sat, 5 Nov 2016 17:03:22 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uA5H3MeY090305; Sat, 5 Nov 2016 17:03:22 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uA5H3Lu2090298; Sat, 5 Nov 2016 17:03:21 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201611051703.uA5H3Lu2090298@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 5 Nov 2016 17:03:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r425401 - in head/textproc: . minixmlto 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.23 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: Sat, 05 Nov 2016 17:03:23 -0000 Author: bapt Date: Sat Nov 5 17:03:21 2016 New Revision: 425401 URL: https://svnweb.freebsd.org/changeset/ports/425401 Log: Add minixmlto which is a very tiny script that is a minimalistic alternative to xmlto The goal is not to support every features of xmlto, but just the strict minimum in order to prevent potential circular dependencies, and have a possibility to greatly reduce the number of dependencies Added: head/textproc/minixmlto/ head/textproc/minixmlto/Makefile (contents, props changed) head/textproc/minixmlto/distinfo (contents, props changed) head/textproc/minixmlto/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sat Nov 5 16:59:36 2016 (r425400) +++ head/textproc/Makefile Sat Nov 5 17:03:21 2016 (r425401) @@ -482,6 +482,7 @@ SUBDIR += mifluz SUBDIR += miller SUBDIR += minised + SUBDIR += minixmlto SUBDIR += mk-aspell SUBDIR += mkcatalog SUBDIR += ml-aspell Added: head/textproc/minixmlto/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/minixmlto/Makefile Sat Nov 5 17:03:21 2016 (r425401) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= minixmlto +PORTVERSION= 0.0.1 +CATEGORIES= textproc + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Minimalistic alternative to xmlto + +LICENSE= BSD2CLAUSE + +RUN_DEPENDS= docbook-xsl>0:textproc/docbook-xsl \ + xsltproc:textproc/libxslt \ + html2text:textproc/html2text + +USE_GITHUB= yes +GH_ACCOUNT= bapt +PLIST_FILES= bin/minixmlto + +.include Added: head/textproc/minixmlto/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/minixmlto/distinfo Sat Nov 5 17:03:21 2016 (r425401) @@ -0,0 +1,3 @@ +TIMESTAMP = 1478364938 +SHA256 (bapt-minixmlto-0.0.1_GH0.tar.gz) = 7349923751fac497daa1ca67f967d3633fb3e2eb83fe87228c88a002895d8639 +SIZE (bapt-minixmlto-0.0.1_GH0.tar.gz) = 1500 Added: head/textproc/minixmlto/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/minixmlto/pkg-descr Sat Nov 5 17:03:21 2016 (r425401) @@ -0,0 +1,3 @@ +Minimalistic alternative to xmlto + +WWW: https://github.com/bapt/minixmlto