diff options
author | nikita <nikita@pkgsrc.org> | 2020-06-29 12:56:03 +0000 |
---|---|---|
committer | nikita <nikita@pkgsrc.org> | 2020-06-29 12:56:03 +0000 |
commit | d9ff13bd72e3364aa2c68a2a7684203d6c88bea8 (patch) | |
tree | 2ede32e9a849093ee4d3e514ad5cd671d7358dd4 /textproc | |
parent | 5dd95fd9c865bd310fae79c1d4c2ee94e4dbe55a (diff) | |
download | pkgsrc-d9ff13bd72e3364aa2c68a2a7684203d6c88bea8.tar.gz |
Add textproc/go-org version 1.1.0
Org mode parser with html & pretty printed org rendering in Go.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 3 | ||||
-rw-r--r-- | textproc/go-org/DESCR | 1 | ||||
-rw-r--r-- | textproc/go-org/Makefile | 26 | ||||
-rw-r--r-- | textproc/go-org/PLIST | 72 | ||||
-rw-r--r-- | textproc/go-org/buildlink3.mk | 18 | ||||
-rw-r--r-- | textproc/go-org/distinfo | 6 |
6 files changed, 125 insertions, 1 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 5ddf822587a..7f7dcaacaec 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1148 2020/06/18 02:59:57 gutteridge Exp $ +# $NetBSD: Makefile,v 1.1149 2020/06/29 12:56:03 nikita Exp $ # COMMENT= Text processing utilities (does not include desktop publishing) @@ -232,6 +232,7 @@ SUBDIR+= go-goldmark SUBDIR+= go-inflect SUBDIR+= go-md2man SUBDIR+= go-mmark +SUBDIR+= go-org SUBDIR+= go-prose SUBDIR+= go-regexp2 SUBDIR+= go-runewidth diff --git a/textproc/go-org/DESCR b/textproc/go-org/DESCR new file mode 100644 index 00000000000..fb85720a5d0 --- /dev/null +++ b/textproc/go-org/DESCR @@ -0,0 +1 @@ +Org mode parser with html & pretty printed org rendering in Go. diff --git a/textproc/go-org/Makefile b/textproc/go-org/Makefile new file mode 100644 index 00000000000..2cefe39a1e5 --- /dev/null +++ b/textproc/go-org/Makefile @@ -0,0 +1,26 @@ +# $NetBSD: Makefile,v 1.1 2020/06/29 12:56:03 nikita Exp $ + +DISTNAME= go-org-1.1.0 +CATEGORIES= textproc +MASTER_SITES= ${MASTER_SITE_GITHUB:=niklasfasching/} +GITHUB_PROJECT= go-org +GITHUB_TAG= v1.1.0 + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/niklasfasching/go-org +COMMENT= Go Org mode parser with html & pretty printed org rendering +LICENSE= mit + +USE_TOOLS+= bash +REPLACE_BASH+= etc/generate-fixtures +REPLACE_BASH+= etc/generate-gh-pages +REPLACE_BASH+= etc/githooks/pre-push + +GO_SRCPATH= github.com/niklasfasching/go-org +GO_DIST_BASE= ${DISTNAME} + + +.include "../../net/go-net/buildlink3.mk" +.include "../../textproc/go-chroma/buildlink3.mk" +.include "../../lang/go/go-package.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/textproc/go-org/PLIST b/textproc/go-org/PLIST new file mode 100644 index 00000000000..6266572ae7e --- /dev/null +++ b/textproc/go-org/PLIST @@ -0,0 +1,72 @@ +@comment $NetBSD: PLIST,v 1.1 2020/06/29 12:56:03 nikita Exp $ +bin/go-org +gopkg/pkg/${GO_PLATFORM}/github.com/niklasfasching/go-org/org.a +gopkg/src/github.com/niklasfasching/go-org/LICENSE +gopkg/src/github.com/niklasfasching/go-org/Makefile +gopkg/src/github.com/niklasfasching/go-org/README.org +gopkg/src/github.com/niklasfasching/go-org/etc/_goorgeous.go +gopkg/src/github.com/niklasfasching/go-org/etc/_wasm.go +gopkg/src/github.com/niklasfasching/go-org/etc/example.png +gopkg/src/github.com/niklasfasching/go-org/etc/generate-fixtures +gopkg/src/github.com/niklasfasching/go-org/etc/generate-gh-pages +gopkg/src/github.com/niklasfasching/go-org/etc/githooks/pre-push +gopkg/src/github.com/niklasfasching/go-org/etc/style.css +gopkg/src/github.com/niklasfasching/go-org/main.go +gopkg/src/github.com/niklasfasching/go-org/org/block.go +gopkg/src/github.com/niklasfasching/go-org/org/document.go +gopkg/src/github.com/niklasfasching/go-org/org/drawer.go +gopkg/src/github.com/niklasfasching/go-org/org/footnote.go +gopkg/src/github.com/niklasfasching/go-org/org/fuzz.go +gopkg/src/github.com/niklasfasching/go-org/org/headline.go +gopkg/src/github.com/niklasfasching/go-org/org/html_entity.go +gopkg/src/github.com/niklasfasching/go-org/org/html_writer.go +gopkg/src/github.com/niklasfasching/go-org/org/html_writer_test.go +gopkg/src/github.com/niklasfasching/go-org/org/inline.go +gopkg/src/github.com/niklasfasching/go-org/org/keyword.go +gopkg/src/github.com/niklasfasching/go-org/org/list.go +gopkg/src/github.com/niklasfasching/go-org/org/org_writer.go +gopkg/src/github.com/niklasfasching/go-org/org/org_writer_test.go +gopkg/src/github.com/niklasfasching/go-org/org/paragraph.go +gopkg/src/github.com/niklasfasching/go-org/org/table.go +gopkg/src/github.com/niklasfasching/go-org/org/testdata/blocks.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/blocks.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/blocks.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/captions.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/captions.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/captions.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/footnotes.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/footnotes.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/footnotes.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/footnotes_in_headline.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/footnotes_in_headline.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/footnotes_in_headline.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/headlines.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/headlines.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/headlines.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/inline.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/inline.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/inline.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/keywords.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/keywords.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/keywords.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/latex.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/latex.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/latex.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/lists.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/lists.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/lists.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/misc.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/misc.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/misc.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/options.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/options.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/options.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/paragraphs.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/paragraphs.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/paragraphs.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/setup_file_org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/tables.html +gopkg/src/github.com/niklasfasching/go-org/org/testdata/tables.org +gopkg/src/github.com/niklasfasching/go-org/org/testdata/tables.pretty_org +gopkg/src/github.com/niklasfasching/go-org/org/util.go +gopkg/src/github.com/niklasfasching/go-org/org/writer.go diff --git a/textproc/go-org/buildlink3.mk b/textproc/go-org/buildlink3.mk new file mode 100644 index 00000000000..ecd9af72e95 --- /dev/null +++ b/textproc/go-org/buildlink3.mk @@ -0,0 +1,18 @@ +# $NetBSD: buildlink3.mk,v 1.1 2020/06/29 12:56:03 nikita Exp $ + +BUILDLINK_TREE+= go-org + +.if !defined(GO_ORG_BUILDLINK3_MK) +GO_ORG_BUILDLINK3_MK:= + +BUILDLINK_CONTENTS_FILTER.go-org= ${EGREP} gopkg/ +BUILDLINK_DEPMETHOD.go-org?= build + +BUILDLINK_API_DEPENDS.go-org+= go-org>=1.1.0 +BUILDLINK_PKGSRCDIR.go-org?= ../../textproc/go-org + +.include "../../net/go-net/buildlink3.mk" +.include "../../textproc/go-chroma/buildlink3.mk" +.endif # GO_ORG_BUILDLINK3_MK + +BUILDLINK_TREE+= -go-org diff --git a/textproc/go-org/distinfo b/textproc/go-org/distinfo new file mode 100644 index 00000000000..d1e8dcbbe25 --- /dev/null +++ b/textproc/go-org/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/06/29 12:56:03 nikita Exp $ + +SHA1 (go-org-1.1.0.tar.gz) = e4bd534941b2b25f5c71cd9b31528d86d9424531 +RMD160 (go-org-1.1.0.tar.gz) = 2aea8e437038fb491bd49a06f614e464d871c0d8 +SHA512 (go-org-1.1.0.tar.gz) = 65e15fcc257a31b58027659693027d6e4e84ea49d3a4f7ba08546348bd01540916116be14edbfaf853c1dc1b9ac6a6dd547b6d44ec233a8d12dad898d179d5fc +Size (go-org-1.1.0.tar.gz) = 222300 bytes |