From owner-svn-ports-head@freebsd.org Fri Jan 20 13:31:07 2017 Return-Path: Delivered-To: svn-ports-head@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 BA76ACB8299; Fri, 20 Jan 2017 13:31:07 +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 7C29E1136; Fri, 20 Jan 2017 13:31:07 +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 v0KDV6O2045308; Fri, 20 Jan 2017 13:31:06 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0KDV5wR045300; Fri, 20 Jan 2017 13:31:05 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201701201331.v0KDV5wR045300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 20 Jan 2017 13:31:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r431957 - in head/textproc: . lowdown lowdown/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-head@freebsd.org X-Mailman-Version: 2.1.23 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: Fri, 20 Jan 2017 13:31:07 -0000 Author: bapt Date: Fri Jan 20 13:31:05 2017 New Revision: 431957 URL: https://svnweb.freebsd.org/changeset/ports/431957 Log: New port: lowdown lowdown is just another Markdown translator. It can output traditional HTML or a document for your troff type-setter of choice, such as groff(1), Heirloom troff, or even mandoc(1). lowdown doesn't require XSLT, Python, or even Perl - it's just clean, secure, open source C code with no dependencies. Its canonical documentation is the lowdown(1) manpage. WWW: http://kristaps.bsd.lv/lowdown/ Added: head/textproc/lowdown/ head/textproc/lowdown/Makefile (contents, props changed) head/textproc/lowdown/distinfo (contents, props changed) head/textproc/lowdown/files/ head/textproc/lowdown/files/patch-Makefile (contents, props changed) head/textproc/lowdown/files/patch-library.c (contents, props changed) head/textproc/lowdown/files/patch-log.c (contents, props changed) head/textproc/lowdown/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Fri Jan 20 13:27:03 2017 (r431956) +++ head/textproc/Makefile Fri Jan 20 13:31:05 2017 (r431957) @@ -453,6 +453,7 @@ SUBDIR += linuxdoc-tools SUBDIR += localize SUBDIR += loook + SUBDIR += lowdown SUBDIR += lt-aspell SUBDIR += lt-hyphen SUBDIR += lttoolbox Added: head/textproc/lowdown/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/lowdown/Makefile Fri Jan 20 13:31:05 2017 (r431957) @@ -0,0 +1,18 @@ +# $FreeBSD$ + +PORTNAME= lowdown +PORTVERSION= 0.1.3 +CATEGORIES= textproc +MASTER_SITES= http://kristaps.bsd.lv/lowdown/snapshots/ + +MAINTAINER= bapt@FreeBSD.org +COMMENT= Simple Markdown translator + +LICENSE= ISCL + +PLIST_FILES= bin/lowdown \ + include/lowdown.h \ + lib/liblowdown.a \ + man/man1/lowdown.1.gz + +.include Added: head/textproc/lowdown/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/lowdown/distinfo Fri Jan 20 13:31:05 2017 (r431957) @@ -0,0 +1,3 @@ +TIMESTAMP = 1484918286 +SHA256 (lowdown-0.1.3.tar.gz) = f72778b1fde0c1817f7283660faac16e445826eb3be3def622473285096703f5 +SIZE (lowdown-0.1.3.tar.gz) = 44173 Added: head/textproc/lowdown/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/lowdown/files/patch-Makefile Fri Jan 20 13:31:05 2017 (r431957) @@ -0,0 +1,19 @@ +--- Makefile.orig 2017-01-19 23:17:59 UTC ++++ Makefile +@@ -21,7 +21,7 @@ LIBDIR = $(PREFIX)/lib + INCLUDEDIR = $(PREFIX)/include + MANDIR = $(PREFIX)/man + WWWDIR = /var/www/vhosts/kristaps.bsd.lv/htdocs/lowdown +-HTMLS = archive.html index.html lowdown.1.html lowdown.3.html README.html ++HTMLS = archive.html index.html lowdown.1.html README.html + PDFS = index.pdf README.pdf + MDS = index.md README.md + CSSS = template.css mandoc.css +@@ -54,7 +54,6 @@ install: all + install -m 0644 liblowdown.a $(DESTDIR)$(LIBDIR) + install -m 0644 lowdown.h $(DESTDIR)$(INCLUDEDIR) + install -m 0644 lowdown.1 $(DESTDIR)$(MANDIR)/man1 +- install -m 0644 lowdown.3 $(DESTDIR)$(MANDIR)/man3 + + index.xml README.xml index.pdf README.pdf: lowdown + Added: head/textproc/lowdown/files/patch-library.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/lowdown/files/patch-library.c Fri Jan 20 13:31:05 2017 (r431957) @@ -0,0 +1,10 @@ +--- library.c.orig 2017-01-19 23:17:59 UTC ++++ library.c +@@ -16,6 +16,7 @@ + */ + #include + #include ++#include + #include + #include + Added: head/textproc/lowdown/files/patch-log.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/lowdown/files/patch-log.c Fri Jan 20 13:31:05 2017 (r431957) @@ -0,0 +1,10 @@ +--- log.c.orig 2017-01-19 23:17:59 UTC ++++ log.c +@@ -17,6 +17,7 @@ + #include + #include + #include ++#include + #include + + #include "lowdown.h" Added: head/textproc/lowdown/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/lowdown/pkg-descr Fri Jan 20 13:31:05 2017 (r431957) @@ -0,0 +1,7 @@ +lowdown is just another Markdown translator. It can output traditional HTML or +a document for your troff type-setter of choice, such as groff(1), Heirloom +troff, or even mandoc(1). lowdown doesn't require XSLT, Python, or even Perl - +it's just clean, secure, open source C code with no dependencies. Its +canonical documentation is the lowdown(1) manpage. + +WWW: http://kristaps.bsd.lv/lowdown/