pkgsrc-Changes archive

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

CVS commit: pkgsrc/textproc



Module Name:    pkgsrc
Committed By:   nikita
Date:           Mon Jun 29 12:56:03 UTC 2020

Modified Files:
        pkgsrc/textproc: Makefile
Added Files:
        pkgsrc/textproc/go-org: DESCR Makefile PLIST buildlink3.mk distinfo

Log Message:
Add textproc/go-org version 1.1.0

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


To generate a diff of this commit:
cvs rdiff -u -r1.1148 -r1.1149 pkgsrc/textproc/Makefile
cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/go-org/DESCR \
    pkgsrc/textproc/go-org/Makefile pkgsrc/textproc/go-org/PLIST \
    pkgsrc/textproc/go-org/buildlink3.mk pkgsrc/textproc/go-org/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/Makefile
diff -u pkgsrc/textproc/Makefile:1.1148 pkgsrc/textproc/Makefile:1.1149
--- pkgsrc/textproc/Makefile:1.1148     Thu Jun 18 02:59:57 2020
+++ pkgsrc/textproc/Makefile    Mon Jun 29 12:56:03 2020
@@ -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

Added files:

Index: pkgsrc/textproc/go-org/DESCR
diff -u /dev/null pkgsrc/textproc/go-org/DESCR:1.1
--- /dev/null   Mon Jun 29 12:56:03 2020
+++ pkgsrc/textproc/go-org/DESCR        Mon Jun 29 12:56:03 2020
@@ -0,0 +1 @@
+Org mode parser with html & pretty printed org rendering in Go.
Index: pkgsrc/textproc/go-org/Makefile
diff -u /dev/null pkgsrc/textproc/go-org/Makefile:1.1
--- /dev/null   Mon Jun 29 12:56:03 2020
+++ pkgsrc/textproc/go-org/Makefile     Mon Jun 29 12:56:03 2020
@@ -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"
Index: pkgsrc/textproc/go-org/PLIST
diff -u /dev/null pkgsrc/textproc/go-org/PLIST:1.1
--- /dev/null   Mon Jun 29 12:56:03 2020
+++ pkgsrc/textproc/go-org/PLIST        Mon Jun 29 12:56:03 2020
@@ -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
Index: pkgsrc/textproc/go-org/buildlink3.mk
diff -u /dev/null pkgsrc/textproc/go-org/buildlink3.mk:1.1
--- /dev/null   Mon Jun 29 12:56:03 2020
+++ pkgsrc/textproc/go-org/buildlink3.mk        Mon Jun 29 12:56:03 2020
@@ -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
Index: pkgsrc/textproc/go-org/distinfo
diff -u /dev/null pkgsrc/textproc/go-org/distinfo:1.1
--- /dev/null   Mon Jun 29 12:56:03 2020
+++ pkgsrc/textproc/go-org/distinfo     Mon Jun 29 12:56:03 2020
@@ -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