Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 May 2019 09:30:09 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r501698 - in head/textproc: . markdownfmt
Message-ID:  <201905150930.x4F9U9wV083483@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Wed May 15 09:30:09 2019
New Revision: 501698
URL: https://svnweb.freebsd.org/changeset/ports/501698

Log:
  New port: textproc/markdownfmt: Tool for linting and formatting Markdown in-place (similar to gofmt)
  
  markdownfmt is a linter similar to gofmt but for the Markdown language.
  It is capable of autoformatting Markdown files in-place or generating diffs
  with linting applied. Also, it is used in many plugins for formatting
  Markdown files written for text editors like Vim or Emacs.
  
  WWW: https://github.com/shurcooL/markdownfmt

Added:
  head/textproc/markdownfmt/
  head/textproc/markdownfmt/Makefile   (contents, props changed)
  head/textproc/markdownfmt/distinfo   (contents, props changed)
  head/textproc/markdownfmt/pkg-descr   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Wed May 15 09:26:18 2019	(r501697)
+++ head/textproc/Makefile	Wed May 15 09:30:09 2019	(r501698)
@@ -432,6 +432,7 @@
     SUBDIR += man2html
     SUBDIR += markdown
     SUBDIR += markdown-mode.el
+    SUBDIR += markdownfmt
     SUBDIR += mathml-xsd
     SUBDIR += mdocml
     SUBDIR += meld

Added: head/textproc/markdownfmt/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/markdownfmt/Makefile	Wed May 15 09:30:09 2019	(r501698)
@@ -0,0 +1,27 @@
+# $FreeBSD$
+
+PORTNAME=	markdownfmt
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.1-67
+DISTVERSIONSUFFIX=	-g3438a10
+CATEGORIES=	textproc
+
+MAINTAINER=	0mp@FreeBSD.org
+COMMENT=	Tool for linting and formatting Markdown in-place (similar to gofmt)
+
+LICENSE=	MIT
+# License file is not included.
+
+USES=		go:modules
+GO_PKGNAME=	github.com/${GH_ACCOUNT}/${PORTNAME}
+GH_TUPLE=	golang:crypto:22d7a77e9e5f:golang_crypto/vendor/golang.org/x/crypto \
+		golang:sys:97732733099d:golang_sys/vendor/golang.org/x/sys \
+		mattn:go-runewidth:v0.0.4:mattn_go_runewidth/vendor/github.com/mattn/go-runewidth \
+		russross:blackfriday:a477dd164691:russross_blackfriday/vendor/github.com/russross/blackfriday \
+		shurcooL:go:6713ea532688:shurcool_go/vendor/github.com/shurcooL/go
+USE_GITHUB=	yes
+GH_ACCOUNT=	shurcooL
+
+PLIST_FILES=	bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/textproc/markdownfmt/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/markdownfmt/distinfo	Wed May 15 09:30:09 2019	(r501698)
@@ -0,0 +1,13 @@
+TIMESTAMP = 1557911413
+SHA256 (shurcooL-markdownfmt-v1.1-67-g3438a10_GH0.tar.gz) = b89c23b1296f2b7f22fc5de35c955b9cfc74af199091d16b265d590250b59571
+SIZE (shurcooL-markdownfmt-v1.1-67-g3438a10_GH0.tar.gz) = 9549
+SHA256 (golang-crypto-22d7a77e9e5f_GH0.tar.gz) = 099bb5d6e66c6988dda36b64cb0de93d06468e5edacbf118d51828b9959a76de
+SIZE (golang-crypto-22d7a77e9e5f_GH0.tar.gz) = 1685190
+SHA256 (golang-sys-97732733099d_GH0.tar.gz) = 8d60fa6ab0c2b099f2c7d6f8c0a5df177c5c524183a2a38e0e8d2d18cde53532
+SIZE (golang-sys-97732733099d_GH0.tar.gz) = 1350239
+SHA256 (mattn-go-runewidth-v0.0.4_GH0.tar.gz) = 1973c2de25bc69c3786a00e8118f4d22aa0d040bdfe46c8c8c30419b23e53dfe
+SIZE (mattn-go-runewidth-v0.0.4_GH0.tar.gz) = 19827
+SHA256 (russross-blackfriday-a477dd164691_GH0.tar.gz) = f4303f06046da0d9fffa6cec85bd0f2d6cc25a78611898ca9f1fc51e57aa9f75
+SIZE (russross-blackfriday-a477dd164691_GH0.tar.gz) = 75990
+SHA256 (shurcooL-go-6713ea532688_GH0.tar.gz) = 89c2a5e6b281a2a9ffc300eb6a6652a5e96054f21a045e5a4e9ce76b52654748
+SIZE (shurcooL-go-6713ea532688_GH0.tar.gz) = 25956

Added: head/textproc/markdownfmt/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/markdownfmt/pkg-descr	Wed May 15 09:30:09 2019	(r501698)
@@ -0,0 +1,6 @@
+markdownfmt is a linter similar to gofmt but for the Markdown language. It is
+capable of autoformatting Markdown files in-place or generating diffs with
+linting applied. Also, it is used in many plugins for formatting Markdown files
+written for text editors like Vim or Emacs.
+
+WWW: https://github.com/shurcooL/markdownfmt



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905150930.x4F9U9wV083483>