From owner-svn-ports-head@freebsd.org Sun Oct 4 13:29:39 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 481D44281FE; Sun, 4 Oct 2020 13:29:39 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C44Ml173Pz3RQq; Sun, 4 Oct 2020 13:29:39 +0000 (UTC) (envelope-from 0mp@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 E56AC24EB9; Sun, 4 Oct 2020 13:29:38 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 094DTc66023509; Sun, 4 Oct 2020 13:29:38 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 094DTc2M023505; Sun, 4 Oct 2020 13:29:38 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <202010041329.094DTc2M023505@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Sun, 4 Oct 2020 13:29:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r551389 - in head/textproc: . fmtlatex X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: in head/textproc: . fmtlatex X-SVN-Commit-Revision: 551389 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.33 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: Sun, 04 Oct 2020 13:29:39 -0000 Author: 0mp Date: Sun Oct 4 13:29:37 2020 New Revision: 551389 URL: https://svnweb.freebsd.org/changeset/ports/551389 Log: Add textproc/fmtlatex fmtlatex is able to put a LaTeX document into a canonical formatting form, which is then suitable for comparing genuine content differences between various revisions of the same document rather than just formatting differences. WWW: https://github.com/loopspace/fmtlatex Added: head/textproc/fmtlatex/ head/textproc/fmtlatex/Makefile (contents, props changed) head/textproc/fmtlatex/distinfo (contents, props changed) head/textproc/fmtlatex/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Sun Oct 4 13:16:11 2020 (r551388) +++ head/textproc/Makefile Sun Oct 4 13:29:37 2020 (r551389) @@ -202,6 +202,7 @@ SUBDIR += fldiff SUBDIR += flex SUBDIR += flip + SUBDIR += fmtlatex SUBDIR += fo-aspell SUBDIR += foiltex SUBDIR += fop Added: head/textproc/fmtlatex/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/fmtlatex/Makefile Sun Oct 4 13:29:37 2020 (r551389) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= fmtlatex +DISTVERSION= g20130930 +CATEGORIES= textproc perl5 + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= Reformat LaTeX documents suitable for version control + +LICENSE= GPLv2+ + +USES= perl5 shebangfix +USE_GITHUB= yes +GH_ACCOUNT= loopspace +GH_TAGNAME= e76acd9 +SHEBANG_FILES= ${PORTNAME} + +NO_ARCH= yes +NO_BUILD= yes + +PLIST_FILES= bin/${PORTNAME} +PORTDOCS= Bugs ChangeLog + +OPTIONS_DEFINE= DOCS + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include Added: head/textproc/fmtlatex/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/fmtlatex/distinfo Sun Oct 4 13:29:37 2020 (r551389) @@ -0,0 +1,3 @@ +TIMESTAMP = 1601816624 +SHA256 (loopspace-fmtlatex-g20130930-e76acd9_GH0.tar.gz) = 3ed255dbd435b52fb68b9bb1953c3c45cf5a3e6a7593e75f604f2a10a2c41608 +SIZE (loopspace-fmtlatex-g20130930-e76acd9_GH0.tar.gz) = 6539 Added: head/textproc/fmtlatex/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/fmtlatex/pkg-descr Sun Oct 4 13:29:37 2020 (r551389) @@ -0,0 +1,5 @@ +fmtlatex is able to put a LaTeX document into a canonical formatting form, +which is then suitable for comparing genuine content differences between +various revisions of the same document rather than just formatting differences. + +WWW: https://github.com/loopspace/fmtlatex