Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc Add textproc/go-org version 1.1.0



details:   https://anonhg.NetBSD.org/pkgsrc/rev/811f1bbea9da
branches:  trunk
changeset: 434974:811f1bbea9da
user:      nikita <nikita%pkgsrc.org@localhost>
date:      Mon Jun 29 12:56:03 2020 +0000

description:
Add textproc/go-org version 1.1.0

Org mode parser with html & pretty printed org rendering in Go.

diffstat:

 textproc/Makefile             |   3 +-
 textproc/go-org/DESCR         |   1 +
 textproc/go-org/Makefile      |  26 +++++++++++++++
 textproc/go-org/PLIST         |  72 +++++++++++++++++++++++++++++++++++++++++++
 textproc/go-org/buildlink3.mk |  18 ++++++++++
 textproc/go-org/distinfo      |   6 +++
 6 files changed, 125 insertions(+), 1 deletions(-)

diffs (160 lines):

diff -r 27de1f40a1c5 -r 811f1bbea9da textproc/Makefile
--- a/textproc/Makefile Mon Jun 29 12:52:38 2020 +0000
+++ b/textproc/Makefile Mon Jun 29 12:56:03 2020 +0000
@@ -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-inflect
 SUBDIR+=       go-md2man
 SUBDIR+=       go-mmark
+SUBDIR+=       go-org
 SUBDIR+=       go-prose
 SUBDIR+=       go-regexp2
 SUBDIR+=       go-runewidth
diff -r 27de1f40a1c5 -r 811f1bbea9da textproc/go-org/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/go-org/DESCR     Mon Jun 29 12:56:03 2020 +0000
@@ -0,0 +1,1 @@
+Org mode parser with html & pretty printed org rendering in Go.
diff -r 27de1f40a1c5 -r 811f1bbea9da textproc/go-org/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/go-org/Makefile  Mon Jun 29 12:56:03 2020 +0000
@@ -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@localhost
+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 -r 27de1f40a1c5 -r 811f1bbea9da textproc/go-org/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/go-org/PLIST     Mon Jun 29 12:56:03 2020 +0000
@@ -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 -r 27de1f40a1c5 -r 811f1bbea9da textproc/go-org/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/go-org/buildlink3.mk     Mon Jun 29 12:56:03 2020 +0000
@@ -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 -r 27de1f40a1c5 -r 811f1bbea9da textproc/go-org/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/go-org/distinfo  Mon Jun 29 12:56:03 2020 +0000
@@ -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



Home | Main Index | Thread Index | Old Index