Re: [maintainer update] textproc/lowdown to 1.1.0

2024-07-06 Thread Jeremie Courreges-Anglas
On Thu, Jul 04, 2024 at 01:01:30PM -0700, Bryan Vyhmeister wrote:
> This is a maintainer update for textproc/lowdown to 1.1.0. I
> incorporated the feedback in this thread and this has been working fine
> for me. There were a number of changes and fixes that can be viewed here
> since the previous version of 1.0.0 in ports.
> 
> https://kristaps.bsd.lv/lowdown/archive.html
> 
> None of the changes make any difference for my use case (mostly as part
> of my workflow with www/sblg). Thank you.

Committed with a slight tweak: Stuart suggested to remove the
liblowdown.so symlink installed in the "fake" stage, so that it
doesn't pop up in PLIST and ultimately in /usr/local/lib.

Make sure you run "make plist" when you update a port, to pick up
possible new files.

I have tested that sysutils/lsd and sysutils/eza still build with this
update.

Thanks,
-- 
jca



[maintainer update] textproc/lowdown to 1.1.0

2024-07-04 Thread Bryan Vyhmeister
This is a maintainer update for textproc/lowdown to 1.1.0. I
incorporated the feedback in this thread and this has been working fine
for me. There were a number of changes and fixes that can be viewed here
since the previous version of 1.0.0 in ports.

https://kristaps.bsd.lv/lowdown/archive.html

None of the changes make any difference for my use case (mostly as part
of my workflow with www/sblg). Thank you.

Bryan


Index: textproc/lowdown/Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.31
diff -u -p -u -r1.31 Makefile
--- textproc/lowdown/Makefile   27 Sep 2023 18:09:03 -  1.31
+++ textproc/lowdown/Makefile   30 Jun 2024 21:10:22 -
@@ -1,8 +1,8 @@
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-1.0.0
+DISTNAME = lowdown-1.1.0
 CATEGORIES =   textproc
 
-SHARED_LIBS =  lowdown 0.0 # 1
+SHARED_LIBS =  lowdown 1.0 # 2
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
 MAINTAINER =   Bryan Vyhmeister 
@@ -23,5 +23,9 @@ MAKE_FLAGS += LIBVER="${LIBlowdown_VERSI
 ALL_TARGET =   lowdown
 FAKE_TARGET =  install install_libs
 TEST_TARGET =  regress
+
+post-install:
+   # remove liblowdown.so
+   rm ${WRKSRC}/liblowdown.so
 
 .include 
Index: textproc/lowdown/distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.26
diff -u -p -u -r1.26 distinfo
--- textproc/lowdown/distinfo   27 Jul 2022 08:59:09 -  1.26
+++ textproc/lowdown/distinfo   30 Jun 2024 21:10:22 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-1.0.0.tar.gz) = p8nbvUDj6dkpb/bvasVP7IOxq+VNt7YRPNnA9pKiDBM=
-SIZE (lowdown-1.0.0.tar.gz) = 247307
+SHA256 (lowdown-1.1.0.tar.gz) = 8x45UMRzKx5AkXT6CS7KQMVb53pEjuKBjfmHl517CHk=
+SIZE (lowdown-1.1.0.tar.gz) = 269632



Re: [update] textproc/lowdown to 1.1.0

2024-07-02 Thread Bryan Vyhmeister
On Sun, Jun 30, 2024 at 03:04:33PM +0100, Stuart Henderson wrote:
> New version so don't bump REVISION.
> 
> If you regenerate PLIST it tries to add liblowdown.so; that should be
> disabled somehow (either: patch to stop it in the first place, rm in
> post-install, or @comment in PLIST).

I added the post-install. Is this correct?

Bryan



Index: textproc/lowdown/Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.31
diff -u -p -u -r1.31 Makefile
--- textproc/lowdown/Makefile   27 Sep 2023 18:09:03 -  1.31
+++ textproc/lowdown/Makefile   30 Jun 2024 21:10:22 -
@@ -1,8 +1,8 @@
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-1.0.0
+DISTNAME = lowdown-1.1.0
 CATEGORIES =   textproc
 
-SHARED_LIBS =  lowdown 0.0 # 1
+SHARED_LIBS =  lowdown 1.0 # 2
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
 MAINTAINER =   Bryan Vyhmeister 
@@ -23,5 +23,9 @@ MAKE_FLAGS += LIBVER="${LIBlowdown_VERSI
 ALL_TARGET =   lowdown
 FAKE_TARGET =  install install_libs
 TEST_TARGET =  regress
+
+post-install:
+   # remove liblowdown.so
+   rm ${WRKSRC}/liblowdown.so
 
 .include 
Index: textproc/lowdown/distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.26
diff -u -p -u -r1.26 distinfo
--- textproc/lowdown/distinfo   27 Jul 2022 08:59:09 -  1.26
+++ textproc/lowdown/distinfo   30 Jun 2024 21:10:22 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-1.0.0.tar.gz) = p8nbvUDj6dkpb/bvasVP7IOxq+VNt7YRPNnA9pKiDBM=
-SIZE (lowdown-1.0.0.tar.gz) = 247307
+SHA256 (lowdown-1.1.0.tar.gz) = 8x45UMRzKx5AkXT6CS7KQMVb53pEjuKBjfmHl517CHk=
+SIZE (lowdown-1.1.0.tar.gz) = 269632



Re: [update] textproc/lowdown to 1.1.0

2024-06-30 Thread Stuart Henderson
On 2024/06/28 20:24, Bryan Vyhmeister wrote:
> I missed this attempt to update this port. Thank you for attempting the
> update. Here is my patch.
> 
> Bryan
> 
> 
> Index: textproc/lowdown/Makefile
> ===
> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> retrieving revision 1.31
> diff -u -p -u -r1.31 Makefile
> --- textproc/lowdown/Makefile 27 Sep 2023 18:09:03 -  1.31
> +++ textproc/lowdown/Makefile 29 Jun 2024 03:18:10 -
> @@ -1,11 +1,12 @@
>  COMMENT =simple markdown translator
> -DISTNAME =   lowdown-1.0.0
> +DISTNAME =   lowdown-1.1.0
>  CATEGORIES = textproc
>  
> -SHARED_LIBS =lowdown 0.0 # 1
> +SHARED_LIBS =lowdown 1.0 # 2
>  
>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
>  MAINTAINER = Bryan Vyhmeister 
> +REVISION =   0

New version so don't bump REVISION.

If you regenerate PLIST it tries to add liblowdown.so; that should be
disabled somehow (either: patch to stop it in the first place, rm in
post-install, or @comment in PLIST).



Re: [update] textproc/lowdown to 1.1.0

2024-06-28 Thread Bryan Vyhmeister
I missed this attempt to update this port. Thank you for attempting the
update. Here is my patch.

Bryan


Index: textproc/lowdown/Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.31
diff -u -p -u -r1.31 Makefile
--- textproc/lowdown/Makefile   27 Sep 2023 18:09:03 -  1.31
+++ textproc/lowdown/Makefile   29 Jun 2024 03:18:10 -
@@ -1,11 +1,12 @@
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-1.0.0
+DISTNAME = lowdown-1.1.0
 CATEGORIES =   textproc
 
-SHARED_LIBS =  lowdown 0.0 # 1
+SHARED_LIBS =  lowdown 1.0 # 2
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
 MAINTAINER =   Bryan Vyhmeister 
+REVISION = 0
 
 # ISC
 PERMIT_PACKAGE =   Yes
Index: textproc/lowdown/distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.26
diff -u -p -u -r1.26 distinfo
--- textproc/lowdown/distinfo   27 Jul 2022 08:59:09 -  1.26
+++ textproc/lowdown/distinfo   29 Jun 2024 03:18:10 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-1.0.0.tar.gz) = p8nbvUDj6dkpb/bvasVP7IOxq+VNt7YRPNnA9pKiDBM=
-SIZE (lowdown-1.0.0.tar.gz) = 247307
+SHA256 (lowdown-1.1.0.tar.gz) = 8x45UMRzKx5AkXT6CS7KQMVb53pEjuKBjfmHl517CHk=
+SIZE (lowdown-1.1.0.tar.gz) = 269632



Re: [update] textproc/lowdown to 1.1.0

2024-05-30 Thread Stuart Henderson
On 2024/05/30 10:34, Justin Berthault wrote:
> Hi ports@
> 
> Trivial update for lowdown to latest version (1.1.0)
> 
> No errors where I tried to rebuild my website and convert some files.
> 
> cc maintainer@
> 
> 
> diff /usr/ports
> commit - 1d153f0cab58ff8ac9ca5e49028143439a8daadd
> path + /usr/ports
> blob - b8563e3bfd373abc147a9a6ba2a2c1a23a475bb5
> file + textproc/lowdown/Makefile
> --- textproc/lowdown/Makefile
> +++ textproc/lowdown/Makefile
> @@ -1,8 +1,8 @@
>  COMMENT =simple markdown translator
> -DISTNAME =   lowdown-1.0.0
> +DISTNAME =   lowdown-1.1.0
>  CATEGORIES = textproc
>  
> -SHARED_LIBS =lowdown 0.0 # 1
> +SHARED_LIBS =lowdown 0.1 # 2

Many functions were removed, that should be a major bump not minor.

>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
>  MAINTAINER = Bryan Vyhmeister 
> blob - 19db86108d89fbff77a606f1ab4542fed6d1452a
> file + textproc/lowdown/distinfo
> --- textproc/lowdown/distinfo
> +++ textproc/lowdown/distinfo
> @@ -1,2 +1,2 @@
> -SHA256 (lowdown-1.0.0.tar.gz) = p8nbvUDj6dkpb/bvasVP7IOxq+VNt7YRPNnA9pKiDBM=
> -SIZE (lowdown-1.0.0.tar.gz) = 247307
> +SHA256 (lowdown-1.1.0.tar.gz) = 8x45UMRzKx5AkXT6CS7KQMVb53pEjuKBjfmHl517CHk=
> +SIZE (lowdown-1.1.0.tar.gz) = 269632
> blob - 5cf757344dfc6c1e29cd33a2ab2db78470d4e8b5
> file + textproc/lowdown/pkg/PLIST
> --- textproc/lowdown/pkg/PLIST
> +++ textproc/lowdown/pkg/PLIST
> @@ -2,6 +2,7 @@
>  @bin bin/lowdown-diff
>  include/lowdown.h
>  @static-lib lib/liblowdown.a
> +@so lib/liblowdown.so

We don't want that, it should be rm'd or @commented.

>  @lib lib/liblowdown.so.${LIBlowdown_VERSION}
>  lib/pkgconfig/lowdown.pc
>  @man man/man1/lowdown-diff.1
> 
> -- 
> ~Justin
> 



[update] textproc/lowdown to 1.1.0

2024-05-30 Thread Justin Berthault
Hi ports@

Trivial update for lowdown to latest version (1.1.0)

No errors where I tried to rebuild my website and convert some files.

cc maintainer@


diff /usr/ports
commit - 1d153f0cab58ff8ac9ca5e49028143439a8daadd
path + /usr/ports
blob - b8563e3bfd373abc147a9a6ba2a2c1a23a475bb5
file + textproc/lowdown/Makefile
--- textproc/lowdown/Makefile
+++ textproc/lowdown/Makefile
@@ -1,8 +1,8 @@
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-1.0.0
+DISTNAME = lowdown-1.1.0
 CATEGORIES =   textproc
 
-SHARED_LIBS =  lowdown 0.0 # 1
+SHARED_LIBS =  lowdown 0.1 # 2
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
 MAINTAINER =   Bryan Vyhmeister 
blob - 19db86108d89fbff77a606f1ab4542fed6d1452a
file + textproc/lowdown/distinfo
--- textproc/lowdown/distinfo
+++ textproc/lowdown/distinfo
@@ -1,2 +1,2 @@
-SHA256 (lowdown-1.0.0.tar.gz) = p8nbvUDj6dkpb/bvasVP7IOxq+VNt7YRPNnA9pKiDBM=
-SIZE (lowdown-1.0.0.tar.gz) = 247307
+SHA256 (lowdown-1.1.0.tar.gz) = 8x45UMRzKx5AkXT6CS7KQMVb53pEjuKBjfmHl517CHk=
+SIZE (lowdown-1.1.0.tar.gz) = 269632
blob - 5cf757344dfc6c1e29cd33a2ab2db78470d4e8b5
file + textproc/lowdown/pkg/PLIST
--- textproc/lowdown/pkg/PLIST
+++ textproc/lowdown/pkg/PLIST
@@ -2,6 +2,7 @@
 @bin bin/lowdown-diff
 include/lowdown.h
 @static-lib lib/liblowdown.a
+@so lib/liblowdown.so
 @lib lib/liblowdown.so.${LIBlowdown_VERSION}
 lib/pkgconfig/lowdown.pc
 @man man/man1/lowdown-diff.1

-- 
~Justin



Re: [MAINTAINER UPDATE] textproc/lowdown to 1.0.0

2022-07-27 Thread Omar Polo
Bryan Vyhmeister  wrote:
> On Mon, Jul 25, 2022 at 09:45:43PM +0200, Omar Polo wrote:
> > Bryan Vyhmeister  wrote:
> > > This is another maintainer update of lowdown from 0.10.0 to 1.0.0.
> > > There are quite a few changes included in the in-between releases. The
> > > changes included are:
> > > 
> > > [...]
> > > 
> > > I did testing on amd64 with no issues. It does appear that the
> > > liblowdown static library is no more also in case someone is using that.
> > > I believe it should work fine everywhere. If someone could ok and
> > > commit, that would be great. Thank you.
> > > 
> > > Bryan
> > 
> > works fine here, but I think it'd be better if we keep the library, the
> > header and the manpages :)
> > 
> > it seems that now an additional FAKE_TARGET is needed.  diff below
> > addresses that and also adds the proper SHARED_LIBS now that the port
> > has one.
> 
> Your patch does not compile for me. It seems that those extra man pages
> have been removed from the release.

can you please show the error?  (and the full log with `make clean; make
build 2>&1 | tee build.log`)

The manpages are definitely there:

% cd /usr/ports/pobj/lowdown-1.0.0/lowdown-1.0.0/
% ls man/
lowdown-diff.1 lowdown_file.3 lowdown_node_free.3
lowdown.1  lowdown_file_diff.3lowdown_nroff_free.3
lowdown.3  lowdown_gemini_free.3  lowdown_nroff_new.3
lowdown.5  lowdown_gemini_new.3   lowdown_nroff_rndr.3
lowdown_buf.3  lowdown_gemini_rndr.3  lowdown_odt_free.3
lowdown_buf_diff.3 lowdown_html_free.3lowdown_odt_new.3
...

and if you look at the makefile the target `install' installs the mans
in the section 1 and 5, and the target `install_lib_common' (deps of
`install_libs') installs all the section 3 mans.

note that my diff was meant to be applied on a clean tree.

Thanks,

Omar Polo



Re: [MAINTAINER UPDATE] textproc/lowdown to 1.0.0

2022-07-26 Thread Bryan Vyhmeister
On Mon, Jul 25, 2022 at 09:45:43PM +0200, Omar Polo wrote:
> Bryan Vyhmeister  wrote:
> > This is another maintainer update of lowdown from 0.10.0 to 1.0.0.
> > There are quite a few changes included in the in-between releases. The
> > changes included are:
> > 
> > [...]
> > 
> > I did testing on amd64 with no issues. It does appear that the
> > liblowdown static library is no more also in case someone is using that.
> > I believe it should work fine everywhere. If someone could ok and
> > commit, that would be great. Thank you.
> > 
> > Bryan
> 
> works fine here, but I think it'd be better if we keep the library, the
> header and the manpages :)
> 
> it seems that now an additional FAKE_TARGET is needed.  diff below
> addresses that and also adds the proper SHARED_LIBS now that the port
> has one.

Your patch does not compile for me. It seems that those extra man pages
have been removed from the release.

Bryan



Re: [MAINTAINER UPDATE] textproc/lowdown to 1.0.0

2022-07-25 Thread Omar Polo
Bryan Vyhmeister  wrote:
> This is another maintainer update of lowdown from 0.10.0 to 1.0.0.
> There are quite a few changes included in the in-between releases. The
> changes included are:
> 
> [...]
> 
> I did testing on amd64 with no issues. It does appear that the
> liblowdown static library is no more also in case someone is using that.
> I believe it should work fine everywhere. If someone could ok and
> commit, that would be great. Thank you.
> 
> Bryan

works fine here, but I think it'd be better if we keep the library, the
header and the manpages :)

it seems that now an additional FAKE_TARGET is needed.  diff below
addresses that and also adds the proper SHARED_LIBS now that the port
has one.

ok?

Index: Makefile
===
RCS file: /home/cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.29
diff -u -p -r1.29 Makefile
--- Makefile3 May 2022 15:39:24 -   1.29
+++ Makefile25 Jul 2022 19:40:33 -
@@ -1,7 +1,9 @@
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.10.0
+DISTNAME = lowdown-1.0.0
 CATEGORIES =   textproc
 
+SHARED_LIBS =  lowdown 0.0 # 1
+
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
 MAINTAINER =   Bryan Vyhmeister 
 
@@ -16,8 +18,10 @@ WANTLIB +=   c m
 CONFIGURE_STYLE =  simple
 CONFIGURE_ARGS =   PREFIX="${PREFIX}"
 
-ALL_TARGET =   lowdown
+MAKE_FLAGS +=  LIBVER="${LIBlowdown_VERSION}"
 
+ALL_TARGET =   lowdown
+FAKE_TARGET =  install install_libs
 TEST_TARGET =  regress
 
 .include 
Index: distinfo
===
RCS file: /home/cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.25
diff -u -p -r1.25 distinfo
--- distinfo3 May 2022 15:39:24 -   1.25
+++ distinfo25 Jul 2022 19:30:20 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.10.0.tar.gz) = t1ytJbEPpy0sRzACDq31Y0WGCWT0Jmu8sYNj58icYpc=
-SIZE (lowdown-0.10.0.tar.gz) = 229928
+SHA256 (lowdown-1.0.0.tar.gz) = p8nbvUDj6dkpb/bvasVP7IOxq+VNt7YRPNnA9pKiDBM=
+SIZE (lowdown-1.0.0.tar.gz) = 247307
Index: pkg/PLIST
===
RCS file: /home/cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.14
diff -u -p -r1.14 PLIST
--- pkg/PLIST   3 May 2022 15:39:24 -   1.14
+++ pkg/PLIST   25 Jul 2022 19:41:06 -
@@ -2,6 +2,7 @@
 @bin bin/lowdown-diff
 include/lowdown.h
 @static-lib lib/liblowdown.a
+@lib lib/liblowdown.so.${LIBlowdown_VERSION}
 lib/pkgconfig/lowdown.pc
 @man man/man1/lowdown-diff.1
 @man man/man1/lowdown.1
@@ -38,3 +39,6 @@ lib/pkgconfig/lowdown.pc
 @man man/man3/lowdown_term_rndr.3
 @man man/man3/lowdown_tree_rndr.3
 @man man/man5/lowdown.5
+share/lowdown/
+share/lowdown/odt/
+share/lowdown/odt/styles.xml



[MAINTAINER UPDATE] textproc/lowdown to 1.0.0

2022-07-25 Thread Bryan Vyhmeister
This is another maintainer update of lowdown from 0.10.0 to 1.0.0.
There are quite a few changes included in the in-between releases. The
changes included are:

lowdown 0.11.0: "Add class and identifier extended attributes to
headers. These are stipulated in PHP Markdown Extra. Documentation in
lowdown(5).
When using header identifiers (the default) and the names collide, use
pandoc's method of creating unique header names. Also handle the case of
markup in headers and the identifier created from those to also be like
pandoc. This isn't a fix, but rather make output consistent with other
tools.
Fix output of how links are handled in -Tms when part of headers.The
same applies to other block-level macros with link children such as in
definition lists. This also cleans up how headers are shown in the PDF
TOC. While here, make header identifiers the same as in -Thtml so that
intra-document links are consistent, and enable linking within a
document using the PDF markers.
Fix footnotes to be actual footnotes in -Tlatex and -Tms instead of
endnotes. The other formats (-Tman, etc.) all continue to use endnotes.
The note system has internally been cleaned up and now allows for more
flexible note placement, e.g., side-notes.
Allow footnotes to properly exist in -Tlatex tables. Also allow for
table alignment.
Bump the minor number as the ABI has been tidied up with respect to
footnotes: they're now all in their LOWDOWN_FOOTNOTE blocks instead of
split into definitions and references. The LOWDOWN_DOC_FOOTER element,
which was not used, has also been removed. The system in general has
spent many, many computer-hours being fuzzed with AFL thanks to hardware
donated by Michael Dexter. Thank you!
Finally, make -T be a synonym for the new -t, which is used by pandoc."

lowdown 0.11.1: "Have -tlatex process header identifiers, both
automatically generated and from PHP extra attributes. Allow linking to
these within the document body.
Have -tms print that an image happened instead of just omitting it
entirely. It now behaves like -tman in this regard.
Fix where -tterm would print double-spaces in certain conditions.
Have extended attribute classes apply as OpenDocument classes in
-tfodt."

lowdown 0.11.2: "Support native roff escapes instead of using Unicode
escapes. (This is a work in progress, as there are many.) This makes
special characters usable in sections and so on.
Fix a bogus free when running lowdown-diff(1). While here, handle
differences between totally-different files, where before we would error
out.
Document how differences are displayed in each output mode, as well as
how metadata is a special case.
Fix -tterm ANSI escape filtering for background colour, allowing changes
to be viewed again.
Fix a sneaky -tterm bug found by AFL where having the number of
footnotes change digit length (e.g., 9 to 10) within a table would cause
an assertion.
Another big thanks to Michael Dexter in providing hardware for
continuously running AFL and finding some of these corner case bugs!"
 
lowdown 1.0.0: "Very minor repairs. All of the functionality and
stability for a v1 release is in place. "Make it so, number one!""

I did testing on amd64 with no issues. It does appear that the
liblowdown static library is no more also in case someone is using that.
I believe it should work fine everywhere. If someone could ok and
commit, that would be great. Thank you.

Bryan



Index: textproc/lowdown/Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.29
diff -u -p -u -p -r1.29 Makefile
--- textproc/lowdown/Makefile   3 May 2022 15:39:24 -   1.29
+++ textproc/lowdown/Makefile   25 Jul 2022 18:47:50 -
@@ -1,5 +1,5 @@
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.10.0
+DISTNAME = lowdown-1.0.0
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: textproc/lowdown/distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.25
diff -u -p -u -p -r1.25 distinfo
--- textproc/lowdown/distinfo   3 May 2022 15:39:24 -   1.25
+++ textproc/lowdown/distinfo   25 Jul 2022 18:47:50 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.10.0.tar.gz) = t1ytJbEPpy0sRzACDq31Y0WGCWT0Jmu8sYNj58icYpc=
-SIZE (lowdown-0.10.0.tar.gz) = 229928
+SHA256 (lowdown-1.0.0.tar.gz) = p8nbvUDj6dkpb/bvasVP7IOxq+VNt7YRPNnA9pKiDBM=
+SIZE (lowdown-1.0.0.tar.gz) = 247307
Index: textproc/lowdown/pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.14
diff -u -p -u -p -r1.14 PLIST
--- textproc/lowdown/pkg/PLIST  3 May 2022 15:39:24 -   1.14
+++ textproc/lowdown/pkg/PLIST  25 Jul 2022 18:47:50 -
@@ -1,40 +1,8 @@
 @bin bin/lowdown
 @bin bin/lowdown-diff
-include/lowdown.h
-@static-lib lib/liblowdown.a
-lib/pkgconfig/lowdown.pc
 

Re: [UPDATE] textproc/lowdown to 0.9.2

2021-10-26 Thread Bryan Vyhmeister
On Sun, Oct 24, 2021 at 03:28:03PM +0200, Frederic Cambus wrote:
> Hi ports@,
> 
> Here is a diff to update lowdown to 0.9.2.
> 
> Comments? OK?
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> retrieving revision 1.26
> diff -u -p -r1.26 Makefile
> --- Makefile  27 Jul 2021 10:51:48 -  1.26
> +++ Makefile  22 Oct 2021 11:44:05 -
> @@ -1,7 +1,7 @@
>  # $OpenBSD: Makefile,v 1.26 2021/07/27 10:51:48 sthen Exp $
>  
>  COMMENT =simple markdown translator
> -DISTNAME =   lowdown-0.8.5
> +DISTNAME =   lowdown-0.9.2
>  CATEGORIES = textproc
>  
>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
> Index: distinfo
> ===
> RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> retrieving revision 1.23
> diff -u -p -r1.23 distinfo
> --- distinfo  27 Jul 2021 10:51:48 -  1.23
> +++ distinfo  22 Oct 2021 11:44:05 -
> @@ -1,2 +1,2 @@
> -SHA256 (lowdown-0.8.5.tar.gz) = DMdpuJ4jXGHK84/eL35r0hBujnNNN7HqMh2WoTDwTwQ=
> -SIZE (lowdown-0.8.5.tar.gz) = 209639
> +SHA256 (lowdown-0.9.2.tar.gz) = XDVdHbIHGRaxrW54kgjeZkvjeBvRfdi2sJsXB6KDqYg=
> +SIZE (lowdown-0.9.2.tar.gz) = 217279

ok maintainer. Thank you.

Bryan



Re: [UPDATE] textproc/lowdown to 0.9.2

2021-10-24 Thread Stefan Hagen
Frederic Cambus wrote:
> Hi ports@,
> 
> Here is a diff to update lowdown to 0.9.2.
> 
> Comments? OK?

The usual checks pass. Test suite runs fine.
Tested on amd64.

ok sdk@



[UPDATE] textproc/lowdown to 0.9.2

2021-10-24 Thread Frederic Cambus
Hi ports@,

Here is a diff to update lowdown to 0.9.2.

Comments? OK?

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.26
diff -u -p -r1.26 Makefile
--- Makefile27 Jul 2021 10:51:48 -  1.26
+++ Makefile22 Oct 2021 11:44:05 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.26 2021/07/27 10:51:48 sthen Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.8.5
+DISTNAME = lowdown-0.9.2
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.23
diff -u -p -r1.23 distinfo
--- distinfo27 Jul 2021 10:51:48 -  1.23
+++ distinfo22 Oct 2021 11:44:05 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.8.5.tar.gz) = DMdpuJ4jXGHK84/eL35r0hBujnNNN7HqMh2WoTDwTwQ=
-SIZE (lowdown-0.8.5.tar.gz) = 209639
+SHA256 (lowdown-0.9.2.tar.gz) = XDVdHbIHGRaxrW54kgjeZkvjeBvRfdi2sJsXB6KDqYg=
+SIZE (lowdown-0.9.2.tar.gz) = 217279



Re: [UPDATE] textproc/lowdown to 0.8.3

2021-03-19 Thread Bryan Vyhmeister
On Thu, Mar 18, 2021 at 11:50:04AM +0100, Frederic Cambus wrote:
> Hi ports@,
> 
> Here is a diff to update lowdown to 0.8.3.
> 
> Those versions bring several bugfixes and split lowdown(1) into
> lowdown-diff(1) for easier reading.
> 
> Comments? OK?
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> retrieving revision 1.24
> diff -u -p -r1.24 Makefile
> --- Makefile  13 Feb 2021 19:37:15 -  1.24
> +++ Makefile  18 Mar 2021 09:49:57 -
> @@ -1,7 +1,7 @@
>  # $OpenBSD: Makefile,v 1.24 2021/02/13 19:37:15 fcambus Exp $
>  
>  COMMENT =simple markdown translator
> -DISTNAME =   lowdown-0.8.1
> +DISTNAME =   lowdown-0.8.3
>  CATEGORIES = textproc
>  
>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
> Index: distinfo
> ===
> RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> retrieving revision 1.21
> diff -u -p -r1.21 distinfo
> --- distinfo  13 Feb 2021 19:37:15 -  1.21
> +++ distinfo  18 Mar 2021 09:49:57 -
> @@ -1,2 +1,2 @@
> -SHA256 (lowdown-0.8.1.tar.gz) = 5ptxsGvCblOLpDtVE0uTGnWAubyEZrX5JAi7zYNU85Q=
> -SIZE (lowdown-0.8.1.tar.gz) = 196068
> +SHA256 (lowdown-0.8.3.tar.gz) = jKuGzHEMAv28Yae9cW/YlqRL2t4uFtyIr9x2rguw7yo=
> +SIZE (lowdown-0.8.3.tar.gz) = 201286
> Index: pkg/PLIST
> ===
> RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
> retrieving revision 1.11
> diff -u -p -r1.11 PLIST
> --- pkg/PLIST 13 Feb 2021 19:37:15 -  1.11
> +++ pkg/PLIST 18 Mar 2021 09:49:57 -
> @@ -4,6 +4,7 @@
>  include/lowdown.h
>  @static-lib lib/liblowdown.a
>  lib/pkgconfig/lowdown.pc
> +@man man/man1/lowdown-diff.1
>  @man man/man1/lowdown.1
>  @man man/man3/lowdown.3
>  @man man/man3/lowdown_buf.3

OK maintainer. Thanks for working on this.

Bryan



[UPDATE] textproc/lowdown to 0.8.3

2021-03-18 Thread Frederic Cambus
Hi ports@,

Here is a diff to update lowdown to 0.8.3.

Those versions bring several bugfixes and split lowdown(1) into
lowdown-diff(1) for easier reading.

Comments? OK?

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.24
diff -u -p -r1.24 Makefile
--- Makefile13 Feb 2021 19:37:15 -  1.24
+++ Makefile18 Mar 2021 09:49:57 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.24 2021/02/13 19:37:15 fcambus Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.8.1
+DISTNAME = lowdown-0.8.3
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.21
diff -u -p -r1.21 distinfo
--- distinfo13 Feb 2021 19:37:15 -  1.21
+++ distinfo18 Mar 2021 09:49:57 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.8.1.tar.gz) = 5ptxsGvCblOLpDtVE0uTGnWAubyEZrX5JAi7zYNU85Q=
-SIZE (lowdown-0.8.1.tar.gz) = 196068
+SHA256 (lowdown-0.8.3.tar.gz) = jKuGzHEMAv28Yae9cW/YlqRL2t4uFtyIr9x2rguw7yo=
+SIZE (lowdown-0.8.3.tar.gz) = 201286
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.11
diff -u -p -r1.11 PLIST
--- pkg/PLIST   13 Feb 2021 19:37:15 -  1.11
+++ pkg/PLIST   18 Mar 2021 09:49:57 -
@@ -4,6 +4,7 @@
 include/lowdown.h
 @static-lib lib/liblowdown.a
 lib/pkgconfig/lowdown.pc
+@man man/man1/lowdown-diff.1
 @man man/man1/lowdown.1
 @man man/man3/lowdown.3
 @man man/man3/lowdown_buf.3



Re: UPDATE: textproc/lowdown 0.8.1

2021-02-13 Thread Frederic Cambus
On Wed, Feb 10, 2021 at 09:28:48PM -0800, Bryan Vyhmeister wrote:
> On Tue, Feb 09, 2021 at 06:15:06PM +0100, Caspar Schutijser wrote:
> > Hi,
> > 
> > Below is a diff that updates textproc/lowdown to 0.8.1. Tested on amd64.
> 
> OK maintainer
> 
> Thank you for doing this.

Committed, thanks!



Re: UPDATE: textproc/lowdown 0.8.1

2021-02-10 Thread Bryan Vyhmeister
On Tue, Feb 09, 2021 at 06:15:06PM +0100, Caspar Schutijser wrote:
> Hi,
> 
> Below is a diff that updates textproc/lowdown to 0.8.1. Tested on amd64.

OK maintainer

Thank you for doing this.

Bryan



UPDATE: textproc/lowdown 0.8.1

2021-02-09 Thread Caspar Schutijser
Hi,

Below is a diff that updates textproc/lowdown to 0.8.1. Tested on amd64.

Caspar Schutijser


Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.23
diff -u -p -r1.23 Makefile
--- Makefile10 Dec 2020 08:28:12 -  1.23
+++ Makefile9 Feb 2021 17:13:15 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.23 2020/12/10 08:28:12 fcambus Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.7.4
+DISTNAME = lowdown-0.8.1
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.20
diff -u -p -r1.20 distinfo
--- distinfo10 Dec 2020 08:28:12 -  1.20
+++ distinfo9 Feb 2021 17:13:15 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.7.4.tar.gz) = IbscrRanGjshiWXqcQlZLvfyKFPrRvBEivmXQb8mwFI=
-SIZE (lowdown-0.7.4.tar.gz) = 183780
+SHA256 (lowdown-0.8.1.tar.gz) = 5ptxsGvCblOLpDtVE0uTGnWAubyEZrX5JAi7zYNU85Q=
+SIZE (lowdown-0.8.1.tar.gz) = 196068
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.10
diff -u -p -r1.10 PLIST
--- pkg/PLIST   10 Dec 2020 08:28:12 -  1.10
+++ pkg/PLIST   9 Feb 2021 17:13:15 -
@@ -16,6 +16,9 @@ lib/pkgconfig/lowdown.pc
 @man man/man3/lowdown_doc_parse.3
 @man man/man3/lowdown_file.3
 @man man/man3/lowdown_file_diff.3
+@man man/man3/lowdown_gemini_free.3
+@man man/man3/lowdown_gemini_new.3
+@man man/man3/lowdown_gemini_rndr.3
 @man man/man3/lowdown_html_free.3
 @man man/man3/lowdown_html_new.3
 @man man/man3/lowdown_html_rndr.3
@@ -23,13 +26,12 @@ lib/pkgconfig/lowdown.pc
 @man man/man3/lowdown_latex_new.3
 @man man/man3/lowdown_latex_rndr.3
 @man man/man3/lowdown_metaq_free.3
+@man man/man3/lowdown_node_free.3
 @man man/man3/lowdown_nroff_free.3
 @man man/man3/lowdown_nroff_new.3
 @man man/man3/lowdown_nroff_rndr.3
 @man man/man3/lowdown_term_free.3
 @man man/man3/lowdown_term_new.3
 @man man/man3/lowdown_term_rndr.3
-@man man/man3/lowdown_tree_free.3
-@man man/man3/lowdown_tree_new.3
 @man man/man3/lowdown_tree_rndr.3
 @man man/man5/lowdown.5



Re: UPDATE: textproc/lowdown 0.7.4

2020-12-10 Thread Frederic Cambus
On Wed, Dec 09, 2020 at 02:04:44PM -0800, Bryan Vyhmeister wrote:
> On Wed, Dec 09, 2020 at 07:34:25PM +0100, Caspar Schutijser wrote:
> > Below is a diff that updates textproc/lowdown to 0.7.4. Tested on amd64,
> > seems to work fine here.
> 
> The patch is based in /usr/ports/textproc/lowdown instead of /usr/ports.
> I just updated the patch myself for ease of applying but, however it is
> applied, it works fine for me. Thank you.
> 
> ok maintainer

Committed, thanks!



Re: UPDATE: textproc/lowdown 0.7.4

2020-12-09 Thread Bryan Vyhmeister
On Wed, Dec 09, 2020 at 07:34:25PM +0100, Caspar Schutijser wrote:
> Below is a diff that updates textproc/lowdown to 0.7.4. Tested on amd64,
> seems to work fine here.

The patch is based in /usr/ports/textproc/lowdown instead of /usr/ports.
I just updated the patch myself for ease of applying but, however it is
applied, it works fine for me. Thank you.

ok maintainer

Bryan


Index: textproc/lowdown/Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.22
diff -u -p -r1.22 Makefile
--- textproc/lowdown/Makefile   29 Jul 2020 08:49:37 -  1.22
+++ textproc/lowdown/Makefile   9 Dec 2020 18:32:46 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.22 2020/07/29 08:49:37 paco Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.7.1
+DISTNAME = lowdown-0.7.4
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: textproc/lowdown/distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.19
diff -u -p -r1.19 distinfo
--- textproc/lowdown/distinfo   29 Jul 2020 08:49:37 -  1.19
+++ textproc/lowdown/distinfo   9 Dec 2020 18:32:46 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.7.1.tar.gz) = ArSPkIhcwqijde8JXaFZVPKi8+zia9bhNVK3WQbNGek=
-SIZE (lowdown-0.7.1.tar.gz) = 17
+SHA256 (lowdown-0.7.4.tar.gz) = IbscrRanGjshiWXqcQlZLvfyKFPrRvBEivmXQb8mwFI=
+SIZE (lowdown-0.7.4.tar.gz) = 183780
Index: textproc/lowdown/pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.9
diff -u -p -r1.9 PLIST
--- textproc/lowdown/pkg/PLIST  29 Jul 2020 08:49:37 -  1.9
+++ textproc/lowdown/pkg/PLIST  9 Dec 2020 18:32:46 -
@@ -10,6 +10,7 @@ lib/pkgconfig/lowdown.pc
 @man man/man3/lowdown_buf_diff.3
 @man man/man3/lowdown_buf_free.3
 @man man/man3/lowdown_buf_new.3
+@man man/man3/lowdown_diff.3
 @man man/man3/lowdown_doc_free.3
 @man man/man3/lowdown_doc_new.3
 @man man/man3/lowdown_doc_parse.3
@@ -21,6 +22,7 @@ lib/pkgconfig/lowdown.pc
 @man man/man3/lowdown_latex_free.3
 @man man/man3/lowdown_latex_new.3
 @man man/man3/lowdown_latex_rndr.3
+@man man/man3/lowdown_metaq_free.3
 @man man/man3/lowdown_nroff_free.3
 @man man/man3/lowdown_nroff_new.3
 @man man/man3/lowdown_nroff_rndr.3



UPDATE: textproc/lowdown 0.7.4

2020-12-09 Thread Caspar Schutijser
Hi,

Below is a diff that updates textproc/lowdown to 0.7.4. Tested on amd64,
seems to work fine here.

Caspar Schutijser


Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.22
diff -u -p -r1.22 Makefile
--- Makefile29 Jul 2020 08:49:37 -  1.22
+++ Makefile9 Dec 2020 18:32:46 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.22 2020/07/29 08:49:37 paco Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.7.1
+DISTNAME = lowdown-0.7.4
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.19
diff -u -p -r1.19 distinfo
--- distinfo29 Jul 2020 08:49:37 -  1.19
+++ distinfo9 Dec 2020 18:32:46 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.7.1.tar.gz) = ArSPkIhcwqijde8JXaFZVPKi8+zia9bhNVK3WQbNGek=
-SIZE (lowdown-0.7.1.tar.gz) = 17
+SHA256 (lowdown-0.7.4.tar.gz) = IbscrRanGjshiWXqcQlZLvfyKFPrRvBEivmXQb8mwFI=
+SIZE (lowdown-0.7.4.tar.gz) = 183780
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.9
diff -u -p -r1.9 PLIST
--- pkg/PLIST   29 Jul 2020 08:49:37 -  1.9
+++ pkg/PLIST   9 Dec 2020 18:32:46 -
@@ -10,6 +10,7 @@ lib/pkgconfig/lowdown.pc
 @man man/man3/lowdown_buf_diff.3
 @man man/man3/lowdown_buf_free.3
 @man man/man3/lowdown_buf_new.3
+@man man/man3/lowdown_diff.3
 @man man/man3/lowdown_doc_free.3
 @man man/man3/lowdown_doc_new.3
 @man man/man3/lowdown_doc_parse.3
@@ -21,6 +22,7 @@ lib/pkgconfig/lowdown.pc
 @man man/man3/lowdown_latex_free.3
 @man man/man3/lowdown_latex_new.3
 @man man/man3/lowdown_latex_rndr.3
+@man man/man3/lowdown_metaq_free.3
 @man man/man3/lowdown_nroff_free.3
 @man man/man3/lowdown_nroff_new.3
 @man man/man3/lowdown_nroff_rndr.3



Re: UPDATE: textproc/lowdown 0.7.1

2020-07-28 Thread Bryan Vyhmeister
On Tue, Jul 28, 2020 at 08:04:20PM +0200, Paco Esteban wrote:
> On Sat, 18 Jul 2020, Caspar Schutijser wrote:
> 
> > Hi,
> > 
> > Below is a diff that updates textproc/lowdown to 0.7.1. Tested on amd64.
> 
> Works ok for me on amd64 too.  I tested it re-generating my personal
> site and some random Markdown files to HTML and all seems good.
> 
> ok paco, waiting for maintainer.

ok maintainer as well. Thank you for doing the update.

Bryan



Re: UPDATE: textproc/lowdown 0.7.1

2020-07-28 Thread Paco Esteban
On Sat, 18 Jul 2020, Caspar Schutijser wrote:

> Hi,
> 
> Below is a diff that updates textproc/lowdown to 0.7.1. Tested on amd64.

Works ok for me on amd64 too.  I tested it re-generating my personal
site and some random Markdown files to HTML and all seems good.

ok paco, waiting for maintainer.

> 
> Thanks,
> Caspar Schutijser
> 
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> retrieving revision 1.21
> diff -u -p -r1.21 Makefile
> --- Makefile  30 May 2020 17:06:37 -  1.21
> +++ Makefile  18 Jul 2020 16:47:52 -
> @@ -1,7 +1,7 @@
>  # $OpenBSD: Makefile,v 1.21 2020/05/30 17:06:37 paco Exp $
>  
>  COMMENT =simple markdown translator
> -DISTNAME =   lowdown-0.6.5
> +DISTNAME =   lowdown-0.7.1
>  CATEGORIES = textproc
>  
>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
> Index: distinfo
> ===
> RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> retrieving revision 1.18
> diff -u -p -r1.18 distinfo
> --- distinfo  30 May 2020 17:06:37 -  1.18
> +++ distinfo  18 Jul 2020 16:47:52 -
> @@ -1,2 +1,2 @@
> -SHA256 (lowdown-0.6.5.tar.gz) = Bd5KyS2qo+jtmrvr3B7DJa3PxqmqL7RisknIZR0geFI=
> -SIZE (lowdown-0.6.5.tar.gz) = 172871
> +SHA256 (lowdown-0.7.1.tar.gz) = ArSPkIhcwqijde8JXaFZVPKi8+zia9bhNVK3WQbNGek=
> +SIZE (lowdown-0.7.1.tar.gz) = 17
> Index: pkg/PLIST
> ===
> RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
> retrieving revision 1.8
> diff -u -p -r1.8 PLIST
> --- pkg/PLIST 30 May 2020 17:06:38 -  1.8
> +++ pkg/PLIST 18 Jul 2020 16:47:52 -
> @@ -8,6 +8,8 @@ lib/pkgconfig/lowdown.pc
>  @man man/man3/lowdown.3
>  @man man/man3/lowdown_buf.3
>  @man man/man3/lowdown_buf_diff.3
> +@man man/man3/lowdown_buf_free.3
> +@man man/man3/lowdown_buf_new.3
>  @man man/man3/lowdown_doc_free.3
>  @man man/man3/lowdown_doc_new.3
>  @man man/man3/lowdown_doc_parse.3
> @@ -16,6 +18,9 @@ lib/pkgconfig/lowdown.pc
>  @man man/man3/lowdown_html_free.3
>  @man man/man3/lowdown_html_new.3
>  @man man/man3/lowdown_html_rndr.3
> +@man man/man3/lowdown_latex_free.3
> +@man man/man3/lowdown_latex_new.3
> +@man man/man3/lowdown_latex_rndr.3
>  @man man/man3/lowdown_nroff_free.3
>  @man man/man3/lowdown_nroff_new.3
>  @man man/man3/lowdown_nroff_rndr.3
> 

-- 
Paco Esteban.
0x5818130B8A6DBC03



UPDATE: textproc/lowdown 0.7.1

2020-07-18 Thread Caspar Schutijser
Hi,

Below is a diff that updates textproc/lowdown to 0.7.1. Tested on amd64.

Thanks,
Caspar Schutijser


Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.21
diff -u -p -r1.21 Makefile
--- Makefile30 May 2020 17:06:37 -  1.21
+++ Makefile18 Jul 2020 16:47:52 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.21 2020/05/30 17:06:37 paco Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.6.5
+DISTNAME = lowdown-0.7.1
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.18
diff -u -p -r1.18 distinfo
--- distinfo30 May 2020 17:06:37 -  1.18
+++ distinfo18 Jul 2020 16:47:52 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.6.5.tar.gz) = Bd5KyS2qo+jtmrvr3B7DJa3PxqmqL7RisknIZR0geFI=
-SIZE (lowdown-0.6.5.tar.gz) = 172871
+SHA256 (lowdown-0.7.1.tar.gz) = ArSPkIhcwqijde8JXaFZVPKi8+zia9bhNVK3WQbNGek=
+SIZE (lowdown-0.7.1.tar.gz) = 17
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.8
diff -u -p -r1.8 PLIST
--- pkg/PLIST   30 May 2020 17:06:38 -  1.8
+++ pkg/PLIST   18 Jul 2020 16:47:52 -
@@ -8,6 +8,8 @@ lib/pkgconfig/lowdown.pc
 @man man/man3/lowdown.3
 @man man/man3/lowdown_buf.3
 @man man/man3/lowdown_buf_diff.3
+@man man/man3/lowdown_buf_free.3
+@man man/man3/lowdown_buf_new.3
 @man man/man3/lowdown_doc_free.3
 @man man/man3/lowdown_doc_new.3
 @man man/man3/lowdown_doc_parse.3
@@ -16,6 +18,9 @@ lib/pkgconfig/lowdown.pc
 @man man/man3/lowdown_html_free.3
 @man man/man3/lowdown_html_new.3
 @man man/man3/lowdown_html_rndr.3
+@man man/man3/lowdown_latex_free.3
+@man man/man3/lowdown_latex_new.3
+@man man/man3/lowdown_latex_rndr.3
 @man man/man3/lowdown_nroff_free.3
 @man man/man3/lowdown_nroff_new.3
 @man man/man3/lowdown_nroff_rndr.3



Re: [update] textproc/lowdown to 0.6.5

2020-05-22 Thread Paco Esteban
On Fri, 22 May 2020, Lucas Raab wrote:

> Hello,
> 
> Fresh off the heels of the 0.6.4 update is 0.6.5.
> 
> Changelog: https://kristaps.bsd.lv/lowdown/archive.html

Builds and works for me on amd64.
The pkg-config(1) addition is a nice touch.

ok paco

-- 
Paco Esteban.
0x5818130B8A6DBC03



[update] textproc/lowdown to 0.6.5

2020-05-22 Thread Lucas Raab
Hello,

Fresh off the heels of the 0.6.4 update is 0.6.5.

Changelog: https://kristaps.bsd.lv/lowdown/archive.html

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.20
diff -u -p -r1.20 Makefile
--- Makefile17 May 2020 13:31:10 -  1.20
+++ Makefile22 May 2020 14:08:37 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.20 2020/05/17 13:31:10 kn Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.6.4
+DISTNAME = lowdown-0.6.5
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.17
diff -u -p -r1.17 distinfo
--- distinfo17 May 2020 13:31:10 -  1.17
+++ distinfo22 May 2020 14:08:37 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.6.4.tar.gz) = EPftZ5/jJMAAs7I0955bEolbpCISgH0kKv3Eja0Tjno=
-SIZE (lowdown-0.6.4.tar.gz) = 154971
+SHA256 (lowdown-0.6.5.tar.gz) = Bd5KyS2qo+jtmrvr3B7DJa3PxqmqL7RisknIZR0geFI=
+SIZE (lowdown-0.6.5.tar.gz) = 172871
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.7
diff -u -p -r1.7 PLIST
--- pkg/PLIST   22 Feb 2020 11:29:17 -  1.7
+++ pkg/PLIST   22 May 2020 14:08:37 -
@@ -3,6 +3,7 @@
 @bin bin/lowdown-diff
 include/lowdown.h
 @static-lib lib/liblowdown.a
+lib/pkgconfig/lowdown.pc
 @man man/man1/lowdown.1
 @man man/man3/lowdown.3
 @man man/man3/lowdown_buf.3



Re: [update] textproc/lowdown to 0.6.4

2020-05-17 Thread Klemens Nanni
On Sun, May 17, 2020 at 08:22:42AM -0500, Lucas Raab wrote:
> ping
I committed your update, thanks.



Re: [update] textproc/lowdown to 0.6.4

2020-05-17 Thread Lucas Raab
On Sun, Apr 19, 2020 at 09:37:48PM -0800, Micah Muer wrote:
> On Sun, 19 Apr 2020 19:18:57 -0500
> Lucas Raab  wrote:
> 
> > On Sun, Apr 12, 2020 at 09:41:24AM -0500, Lucas Raab wrote:
> > > On Sat, Apr 4, 2020, at 10:18, Lucas Raab wrote:
> > > > Hello,
> > > > 
> > > > Here is a lowdown update to 0.6.4.
> > > > 
> > > > Bryan, everything seem ok?
> > > > 
> > > > Thanks,
> > > > Lucas
> > > > 
> > > > Index: Makefile
> > > > ===
> > > > RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> > > > retrieving revision 1.19
> > > > diff -u -p -r1.19 Makefile
> > > > --- Makefile22 Feb 2020 11:29:17 -  1.19
> > > > +++ Makefile4 Apr 2020 15:17:26 -
> > > > @@ -1,7 +1,7 @@
> > > >  # $OpenBSD: Makefile,v 1.19 2020/02/22 11:29:17 sthen Exp $
> > > >  
> > > >  COMMENT =  simple markdown translator
> > > > -DISTNAME = lowdown-0.5.4
> > > > +DISTNAME = lowdown-0.6.4
> > > >  CATEGORIES =   textproc
> > > >  
> > > >  HOMEPAGE = https://kristaps.bsd.lv/lowdown/
> > > > Index: distinfo
> > > > ===
> > > > RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> > > > retrieving revision 1.16
> > > > diff -u -p -r1.16 distinfo
> > > > --- distinfo22 Feb 2020 11:29:17 -  1.16
> > > > +++ distinfo4 Apr 2020 15:17:26 -
> > > > @@ -1,2 +1,2 @@
> > > > -SHA256 (lowdown-0.5.4.tar.gz) = 
> > > > VbTDlqP9IOljqb94kau0EgArpfVX5+iVmp0aFiAyVQo=
> > > > -SIZE (lowdown-0.5.4.tar.gz) = 119029
> > > > +SHA256 (lowdown-0.6.4.tar.gz) = 
> > > > EPftZ5/jJMAAs7I0955bEolbpCISgH0kKv3Eja0Tjno=
> > > > +SIZE (lowdown-0.6.4.tar.gz) = 154971
> > > > 
> > > >
> > > 
> > > Ping
> > > 
> > > Bryan, any thoughts?
> > 
> > No response from maintainer. Thoughts?
> > 
> > I'm not deadset on this making 6.7. Low risk, but that plays both ways.
> > 
> > Lucas
> > 
> 
> For what its's worth, I used your patch to test 0.6.4. on amd64 and
> macppc. Compiles and runs without issue. I noticed no regressions.
> 
> Thank you for sending the update.
> 
> Micah

ping



Re: [update] textproc/lowdown to 0.6.4

2020-04-19 Thread Micah Muer
On Sun, 19 Apr 2020 19:18:57 -0500
Lucas Raab  wrote:

> On Sun, Apr 12, 2020 at 09:41:24AM -0500, Lucas Raab wrote:
> > On Sat, Apr 4, 2020, at 10:18, Lucas Raab wrote:
> > > Hello,
> > > 
> > > Here is a lowdown update to 0.6.4.
> > > 
> > > Bryan, everything seem ok?
> > > 
> > > Thanks,
> > > Lucas
> > > 
> > > Index: Makefile
> > > ===
> > > RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> > > retrieving revision 1.19
> > > diff -u -p -r1.19 Makefile
> > > --- Makefile  22 Feb 2020 11:29:17 -  1.19
> > > +++ Makefile  4 Apr 2020 15:17:26 -
> > > @@ -1,7 +1,7 @@
> > >  # $OpenBSD: Makefile,v 1.19 2020/02/22 11:29:17 sthen Exp $
> > >  
> > >  COMMENT =simple markdown translator
> > > -DISTNAME =   lowdown-0.5.4
> > > +DISTNAME =   lowdown-0.6.4
> > >  CATEGORIES = textproc
> > >  
> > >  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
> > > Index: distinfo
> > > ===
> > > RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> > > retrieving revision 1.16
> > > diff -u -p -r1.16 distinfo
> > > --- distinfo  22 Feb 2020 11:29:17 -  1.16
> > > +++ distinfo  4 Apr 2020 15:17:26 -
> > > @@ -1,2 +1,2 @@
> > > -SHA256 (lowdown-0.5.4.tar.gz) = 
> > > VbTDlqP9IOljqb94kau0EgArpfVX5+iVmp0aFiAyVQo=
> > > -SIZE (lowdown-0.5.4.tar.gz) = 119029
> > > +SHA256 (lowdown-0.6.4.tar.gz) = 
> > > EPftZ5/jJMAAs7I0955bEolbpCISgH0kKv3Eja0Tjno=
> > > +SIZE (lowdown-0.6.4.tar.gz) = 154971
> > > 
> > >
> > 
> > Ping
> > 
> > Bryan, any thoughts?
> 
> No response from maintainer. Thoughts?
> 
> I'm not deadset on this making 6.7. Low risk, but that plays both ways.
> 
> Lucas
> 

For what its's worth, I used your patch to test 0.6.4. on amd64 and
macppc. Compiles and runs without issue. I noticed no regressions.

Thank you for sending the update.

Micah



Re: [update] textproc/lowdown to 0.6.4

2020-04-19 Thread Lucas Raab
On Sun, Apr 12, 2020 at 09:41:24AM -0500, Lucas Raab wrote:
> On Sat, Apr 4, 2020, at 10:18, Lucas Raab wrote:
> > Hello,
> > 
> > Here is a lowdown update to 0.6.4.
> > 
> > Bryan, everything seem ok?
> > 
> > Thanks,
> > Lucas
> > 
> > Index: Makefile
> > ===
> > RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> > retrieving revision 1.19
> > diff -u -p -r1.19 Makefile
> > --- Makefile22 Feb 2020 11:29:17 -  1.19
> > +++ Makefile4 Apr 2020 15:17:26 -
> > @@ -1,7 +1,7 @@
> >  # $OpenBSD: Makefile,v 1.19 2020/02/22 11:29:17 sthen Exp $
> >  
> >  COMMENT =  simple markdown translator
> > -DISTNAME = lowdown-0.5.4
> > +DISTNAME = lowdown-0.6.4
> >  CATEGORIES =   textproc
> >  
> >  HOMEPAGE = https://kristaps.bsd.lv/lowdown/
> > Index: distinfo
> > ===
> > RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> > retrieving revision 1.16
> > diff -u -p -r1.16 distinfo
> > --- distinfo22 Feb 2020 11:29:17 -  1.16
> > +++ distinfo4 Apr 2020 15:17:26 -
> > @@ -1,2 +1,2 @@
> > -SHA256 (lowdown-0.5.4.tar.gz) = 
> > VbTDlqP9IOljqb94kau0EgArpfVX5+iVmp0aFiAyVQo=
> > -SIZE (lowdown-0.5.4.tar.gz) = 119029
> > +SHA256 (lowdown-0.6.4.tar.gz) = 
> > EPftZ5/jJMAAs7I0955bEolbpCISgH0kKv3Eja0Tjno=
> > +SIZE (lowdown-0.6.4.tar.gz) = 154971
> > 
> >
> 
> Ping
> 
> Bryan, any thoughts?

No response from maintainer. Thoughts?

I'm not deadset on this making 6.7. Low risk, but that plays both ways.

Lucas



Re: [update] textproc/lowdown to 0.6.4

2020-04-12 Thread Lucas Raab
On Sat, Apr 4, 2020, at 10:18, Lucas Raab wrote:
> Hello,
> 
> Here is a lowdown update to 0.6.4.
> 
> Bryan, everything seem ok?
> 
> Thanks,
> Lucas
> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> retrieving revision 1.19
> diff -u -p -r1.19 Makefile
> --- Makefile  22 Feb 2020 11:29:17 -  1.19
> +++ Makefile  4 Apr 2020 15:17:26 -
> @@ -1,7 +1,7 @@
>  # $OpenBSD: Makefile,v 1.19 2020/02/22 11:29:17 sthen Exp $
>  
>  COMMENT =simple markdown translator
> -DISTNAME =   lowdown-0.5.4
> +DISTNAME =   lowdown-0.6.4
>  CATEGORIES = textproc
>  
>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
> Index: distinfo
> ===
> RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> retrieving revision 1.16
> diff -u -p -r1.16 distinfo
> --- distinfo  22 Feb 2020 11:29:17 -  1.16
> +++ distinfo  4 Apr 2020 15:17:26 -
> @@ -1,2 +1,2 @@
> -SHA256 (lowdown-0.5.4.tar.gz) = VbTDlqP9IOljqb94kau0EgArpfVX5+iVmp0aFiAyVQo=
> -SIZE (lowdown-0.5.4.tar.gz) = 119029
> +SHA256 (lowdown-0.6.4.tar.gz) = EPftZ5/jJMAAs7I0955bEolbpCISgH0kKv3Eja0Tjno=
> +SIZE (lowdown-0.6.4.tar.gz) = 154971
> 
>

Ping

Bryan, any thoughts?



[update] textproc/lowdown to 0.6.4

2020-04-04 Thread Lucas Raab
Hello,

Here is a lowdown update to 0.6.4.

Bryan, everything seem ok?

Thanks,
Lucas

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.19
diff -u -p -r1.19 Makefile
--- Makefile22 Feb 2020 11:29:17 -  1.19
+++ Makefile4 Apr 2020 15:17:26 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.19 2020/02/22 11:29:17 sthen Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.5.4
+DISTNAME = lowdown-0.6.4
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.16
diff -u -p -r1.16 distinfo
--- distinfo22 Feb 2020 11:29:17 -  1.16
+++ distinfo4 Apr 2020 15:17:26 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.5.4.tar.gz) = VbTDlqP9IOljqb94kau0EgArpfVX5+iVmp0aFiAyVQo=
-SIZE (lowdown-0.5.4.tar.gz) = 119029
+SHA256 (lowdown-0.6.4.tar.gz) = EPftZ5/jJMAAs7I0955bEolbpCISgH0kKv3Eja0Tjno=
+SIZE (lowdown-0.6.4.tar.gz) = 154971



Re: UPDATE: textproc/lowdown 0.4.6 -> 0.5.4

2020-02-22 Thread Stuart Henderson
On 2020/02/22 11:29, Stuart Henderson wrote:
> On 2020/02/21 18:29, Micah Muer wrote:
> > I think the lines were mangled in my last email. Sorry about that!
> > Here's the patch with proper formatting, I hope.
> 
> Yes they were, and that's better. Thanks, committed.
> 

Oops sorry Bryan, I didn't notice the MAINTAINER line.



Re: UPDATE: textproc/lowdown 0.4.6 -> 0.5.4

2020-02-22 Thread Stuart Henderson
On 2020/02/21 18:29, Micah Muer wrote:
> I think the lines were mangled in my last email. Sorry about that!
> Here's the patch with proper formatting, I hope.

Yes they were, and that's better. Thanks, committed.



Re: UPDATE: textproc/lowdown 0.4.6 -> 0.5.4

2020-02-21 Thread Micah Muer
I think the lines were mangled in my last email. Sorry about that!
Here's the patch with proper formatting, I hope.

Thanks,

Micah

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.18
diff -u -p -u -p -r1.18 Makefile
--- Makefile3 Nov 2019 20:18:17 -   1.18
+++ Makefile22 Feb 2020 01:17:37 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.18 2019/11/03 20:18:17 sthen Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.4.6
+DISTNAME = lowdown-0.5.4
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.15
diff -u -p -u -p -r1.15 distinfo
--- distinfo3 Nov 2019 20:18:17 -   1.15
+++ distinfo22 Feb 2020 01:17:37 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.4.6.tar.gz) = 0Pc2dywEC0a1pxR5RGsphSj4Z1HjQvdr16rT/Tlvg48=
-SIZE (lowdown-0.4.6.tar.gz) = 103959
+SHA256 (lowdown-0.5.4.tar.gz) = VbTDlqP9IOljqb94kau0EgArpfVX5+iVmp0aFiAyVQo=
+SIZE (lowdown-0.5.4.tar.gz) = 119029
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.6
diff -u -p -u -p -r1.6 PLIST
--- pkg/PLIST   3 Sep 2018 18:24:33 -   1.6
+++ pkg/PLIST   22 Feb 2020 01:17:37 -
@@ -2,7 +2,7 @@
 @bin bin/lowdown
 @bin bin/lowdown-diff
 include/lowdown.h
-lib/liblowdown.a
+@static-lib lib/liblowdown.a
 @man man/man1/lowdown.1
 @man man/man3/lowdown.3
 @man man/man3/lowdown_buf.3
@@ -10,7 +10,6 @@ lib/liblowdown.a
 @man man/man3/lowdown_doc_free.3
 @man man/man3/lowdown_doc_new.3
 @man man/man3/lowdown_doc_parse.3
-@man man/man3/lowdown_errstr.3
 @man man/man3/lowdown_file.3
 @man man/man3/lowdown_file_diff.3
 @man man/man3/lowdown_html_free.3
@@ -19,6 +18,9 @@ lib/liblowdown.a
 @man man/man3/lowdown_nroff_free.3
 @man man/man3/lowdown_nroff_new.3
 @man man/man3/lowdown_nroff_rndr.3
+@man man/man3/lowdown_term_free.3
+@man man/man3/lowdown_term_new.3
+@man man/man3/lowdown_term_rndr.3
 @man man/man3/lowdown_tree_free.3
 @man man/man3/lowdown_tree_new.3
 @man man/man3/lowdown_tree_rndr.3



UPDATE: textproc/lowdown 0.4.6 -> 0.5.4

2020-02-21 Thread Micah Muer
Here is a simple update of textproc/lowdown from 0.4.6 to 0.5.4. Changes
are detailed here: https://kristaps.bsd.lv/lowdown/archive.html

Thanks,

Micah

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.18
diff -u -p -u -p -r1.18 Makefile
--- Makefile3 Nov 2019 20:18:17 -   1.18
+++ Makefile22 Feb 2020 01:17:37 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.18 2019/11/03 20:18:17 sthen Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.4.6
+DISTNAME = lowdown-0.5.4
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.15
diff -u -p -u -p -r1.15 distinfo
--- distinfo3 Nov 2019 20:18:17 -   1.15
+++ distinfo22 Feb 2020 01:17:37 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.4.6.tar.gz) =
0Pc2dywEC0a1pxR5RGsphSj4Z1HjQvdr16rT/Tlvg48= -SIZE
(lowdown-0.4.6.tar.gz) = 103959 +SHA256 (lowdown-0.5.4.tar.gz) =
VbTDlqP9IOljqb94kau0EgArpfVX5+iVmp0aFiAyVQo= +SIZE
(lowdown-0.5.4.tar.gz) = 119029 Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.6
diff -u -p -u -p -r1.6 PLIST
--- pkg/PLIST   3 Sep 2018 18:24:33 -   1.6
+++ pkg/PLIST   22 Feb 2020 01:17:37 -
@@ -2,7 +2,7 @@
 @bin bin/lowdown
 @bin bin/lowdown-diff
 include/lowdown.h
-lib/liblowdown.a
+@static-lib lib/liblowdown.a
 @man man/man1/lowdown.1
 @man man/man3/lowdown.3
 @man man/man3/lowdown_buf.3
@@ -10,7 +10,6 @@ lib/liblowdown.a
 @man man/man3/lowdown_doc_free.3
 @man man/man3/lowdown_doc_new.3
 @man man/man3/lowdown_doc_parse.3
-@man man/man3/lowdown_errstr.3
 @man man/man3/lowdown_file.3
 @man man/man3/lowdown_file_diff.3
 @man man/man3/lowdown_html_free.3
@@ -19,6 +18,9 @@ lib/liblowdown.a
 @man man/man3/lowdown_nroff_free.3
 @man man/man3/lowdown_nroff_new.3
 @man man/man3/lowdown_nroff_rndr.3
+@man man/man3/lowdown_term_free.3
+@man man/man3/lowdown_term_new.3
+@man man/man3/lowdown_term_rndr.3
 @man man/man3/lowdown_tree_free.3
 @man man/man3/lowdown_tree_new.3
 @man man/man3/lowdown_tree_rndr.3



[MAINTAINER UPDATE] textproc/lowdown to 0.4.6

2019-11-03 Thread Bryan Vyhmeister
This is another simple maintainer update of lowdown from 0.4.3 to 0.4.6.
The changes included in this release are:

lowdown 0.4.4: "In CommonMark mode, have the first ordered list item be
output as the initial list value. This differs from regular MarkDown,
which always starts lists at one. Also bring in the newest oconfigure."

lowdown 0.4.5: "Bug fix for Mac OSX compilation."

lowdown 0.4.6: "Yet another bug fix for Mac OSX compilation."

I did testing on amd64 with no issues. It should work fine everywhere.
If someone could ok and commit, that would be great. Thank you.

Bryan


Index: textproc/lowdown/Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.17
diff -u -p -r1.17 Makefile
--- textproc/lowdown/Makefile   6 Jun 2019 03:18:34 -   1.17
+++ textproc/lowdown/Makefile   3 Nov 2019 20:09:44 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.17 2019/06/06 03:18:34 daniel Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.4.3
+DISTNAME = lowdown-0.4.6
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: textproc/lowdown/distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.14
diff -u -p -r1.14 distinfo
--- textproc/lowdown/distinfo   6 Jun 2019 03:18:34 -   1.14
+++ textproc/lowdown/distinfo   3 Nov 2019 20:09:44 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.4.3.tar.gz) = JdJy7dR3JOaJLU9AG8hAToktUzaowsxCsWYxLThl3b4=
-SIZE (lowdown-0.4.3.tar.gz) = 103170
+SHA256 (lowdown-0.4.6.tar.gz) = 0Pc2dywEC0a1pxR5RGsphSj4Z1HjQvdr16rT/Tlvg48=
+SIZE (lowdown-0.4.6.tar.gz) = 103959



Re: [update] textproc/lowdown

2019-06-05 Thread Daniel Dickman



> On Jun 5, 2019, at 10:46 PM, Bryan Vyhmeister  wrote:
> 
>> On Fri, May 31, 2019 at 06:17:41PM +0200, Paco Esteban wrote:
>>> On Thu, 23 May 2019, Micah Muer wrote:
>>> 
>>> Here is a simple diff to update lowdown from 0.4.2 to 0.4.3.
>>> 
>>> The changelog is very short:
>>> 
 Version 0.4.3, 2019-04-01
 
 Fix a segmentation fault.
>>> 
>>> I tested this on OpenBSD -current on amd64. It works fine from what I
>>> see.
>> 
>> Works just fine for me also on amd64.
> 
> maintainer ok
> 
> Looks good to me. Thanks for the doing the update. If someone else could
> ok and commit, that would be great.

Committed. Thanks.

> 
> Bryan
> 



Re: [update] textproc/lowdown

2019-06-05 Thread Bryan Vyhmeister
On Fri, May 31, 2019 at 06:17:41PM +0200, Paco Esteban wrote:
> On Thu, 23 May 2019, Micah Muer wrote:
> 
> > Here is a simple diff to update lowdown from 0.4.2 to 0.4.3.
> > 
> > The changelog is very short:
> > 
> > >Version 0.4.3, 2019-04-01
> > >
> > >Fix a segmentation fault.
> > 
> > I tested this on OpenBSD -current on amd64. It works fine from what I
> > see.
> 
> Works just fine for me also on amd64.

maintainer ok

Looks good to me. Thanks for the doing the update. If someone else could
ok and commit, that would be great.

Bryan



Re: [update] textproc/lowdown

2019-05-31 Thread Paco Esteban
On Thu, 23 May 2019, Micah Muer wrote:

> Here is a simple diff to update lowdown from 0.4.2 to 0.4.3.
> 
> The changelog is very short:
> 
> >Version 0.4.3, 2019-04-01
> >
> >Fix a segmentation fault.
> 
> I tested this on OpenBSD -current on amd64. It works fine from what I
> see.

Works just fine for me also on amd64.

Cheers,

-- 
Paco Esteban.
https://onna.be/gpgkey.asc
9A6B 6083 AD9E FDC2 0EAF  5CB3 5818 130B 8A6D BC03



[update] textproc/lowdown

2019-05-23 Thread Micah Muer
Here is a simple diff to update lowdown from 0.4.2 to 0.4.3.

The changelog is very short:

>Version 0.4.3, 2019-04-01
>
>Fix a segmentation fault.

I tested this on OpenBSD -current on amd64. It works fine from what I
see.

Thanks!


Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.16
diff -u -p -u -p -r1.16 Makefile
--- Makefile28 Dec 2018 08:22:48 -  1.16
+++ Makefile23 May 2019 23:33:02 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.16 2018/12/28 08:22:48 anton Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.4.2
+DISTNAME = lowdown-0.4.3
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.13
diff -u -p -u -p -r1.13 distinfo
--- distinfo28 Dec 2018 08:19:32 -  1.13
+++ distinfo23 May 2019 23:33:02 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.4.2.tar.gz) = Kp0xik8ImN1stlpGrVzfI9hWYPy7zr4ZqkgopMovXAQ=
-SIZE (lowdown-0.4.2.tar.gz) = 95401
+SHA256 (lowdown-0.4.3.tar.gz) = JdJy7dR3JOaJLU9AG8hAToktUzaowsxCsWYxLThl3b4=
+SIZE (lowdown-0.4.3.tar.gz) = 103170



Re: UPDATE: textproc/lowdown

2018-12-28 Thread Anton Lindqvist
On Wed, Dec 26, 2018 at 04:14:18PM -0800, Bryan Vyhmeister wrote:
> On Wed, Dec 26, 2018 at 09:31:48PM +0100, Anton Lindqvist wrote:
> > Hi,
> > Trivial update to latest version from maintainer; changelog can be found
> > here[1]. While here, configure arguments must be passed as arguments and
> > not using env.
> > 
> > Anyone willing to replace me as the maintainer?
> > 
> > Comments? OK?
> > 
> > [1] https://kristaps.bsd.lv/lowdown/archive.html
> 
> I did some brief testing on amd64 and all seems to work fine. I am happy
> to take maintainer also. Here is your diff plus the maintainer change.

Thanks, consider it done.



Re: UPDATE: textproc/lowdown

2018-12-27 Thread Anthony J. Bentley
Bryan Vyhmeister writes:
> On Wed, Dec 26, 2018 at 09:31:48PM +0100, Anton Lindqvist wrote:
> > Hi,
> > Trivial update to latest version from maintainer; changelog can be found
> > here[1]. While here, configure arguments must be passed as arguments and
> > not using env.
> > 
> > Anyone willing to replace me as the maintainer?
> > 
> > Comments? OK?
> > 
> > [1] https://kristaps.bsd.lv/lowdown/archive.html
>
> I did some brief testing on amd64 and all seems to work fine. I am happy
> to take maintainer also. Here is your diff plus the maintainer change.

ok bentley@



Re: UPDATE: textproc/lowdown

2018-12-26 Thread Bryan Vyhmeister
On Wed, Dec 26, 2018 at 09:31:48PM +0100, Anton Lindqvist wrote:
> Hi,
> Trivial update to latest version from maintainer; changelog can be found
> here[1]. While here, configure arguments must be passed as arguments and
> not using env.
> 
> Anyone willing to replace me as the maintainer?
> 
> Comments? OK?
> 
> [1] https://kristaps.bsd.lv/lowdown/archive.html

I did some brief testing on amd64 and all seems to work fine. I am happy
to take maintainer also. Here is your diff plus the maintainer change.

Bryan


Index: textproc/lowdown/Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- textproc/lowdown/Makefile   6 Sep 2018 16:13:01 -   1.14
+++ textproc/lowdown/Makefile   27 Dec 2018 00:08:23 -
@@ -1,11 +1,11 @@
 # $OpenBSD: Makefile,v 1.14 2018/09/06 16:13:01 anton Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.4.1
+DISTNAME = lowdown-0.4.2
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
-MAINTAINER =   Anton Lindqvist 
+MAINTAINER =   Bryan Vyhmeister 
 
 # ISC
 PERMIT_PACKAGE_CDROM = Yes
@@ -16,7 +16,7 @@ MASTER_SITES =https://kristaps.bsd.lv/l
 WANTLIB += c m
 
 CONFIGURE_STYLE =  simple
-CONFIGURE_ENV =PREFIX="${PREFIX}"
+CONFIGURE_ARGS =   PREFIX="${PREFIX}"
 
 ALL_TARGET =   lowdown
 
Index: textproc/lowdown/distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.12
diff -u -p -r1.12 distinfo
--- textproc/lowdown/distinfo   3 Sep 2018 18:24:33 -   1.12
+++ textproc/lowdown/distinfo   27 Dec 2018 00:08:23 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.4.1.tar.gz) = pfsvpR2pwty9IjMucaizn8g4uQKZ4KyM3//SvHk0/Ow=
-SIZE (lowdown-0.4.1.tar.gz) = 94595
+SHA256 (lowdown-0.4.2.tar.gz) = Kp0xik8ImN1stlpGrVzfI9hWYPy7zr4ZqkgopMovXAQ=
+SIZE (lowdown-0.4.2.tar.gz) = 95401



UPDATE: textproc/lowdown

2018-12-26 Thread Anton Lindqvist
Hi,
Trivial update to latest version from maintainer; changelog can be found
here[1]. While here, configure arguments must be passed as arguments and
not using env.

Anyone willing to replace me as the maintainer?

Comments? OK?

[1] https://kristaps.bsd.lv/lowdown/archive.html

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.14
diff -u -p -r1.14 Makefile
--- Makefile6 Sep 2018 16:13:01 -   1.14
+++ Makefile26 Dec 2018 20:30:20 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.14 2018/09/06 16:13:01 anton Exp $
 
 COMMENT =  simple markdown translator
-DISTNAME = lowdown-0.4.1
+DISTNAME = lowdown-0.4.2
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
@@ -16,7 +16,7 @@ MASTER_SITES =https://kristaps.bsd.lv/l
 WANTLIB += c m
 
 CONFIGURE_STYLE =  simple
-CONFIGURE_ENV =PREFIX="${PREFIX}"
+CONFIGURE_ARGS =   PREFIX="${PREFIX}"
 
 ALL_TARGET =   lowdown
 
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.12
diff -u -p -r1.12 distinfo
--- distinfo3 Sep 2018 18:24:33 -   1.12
+++ distinfo26 Dec 2018 20:30:20 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.4.1.tar.gz) = pfsvpR2pwty9IjMucaizn8g4uQKZ4KyM3//SvHk0/Ow=
-SIZE (lowdown-0.4.1.tar.gz) = 94595
+SHA256 (lowdown-0.4.2.tar.gz) = Kp0xik8ImN1stlpGrVzfI9hWYPy7zr4ZqkgopMovXAQ=
+SIZE (lowdown-0.4.2.tar.gz) = 95401



UPDATE: textproc/lowdown

2018-09-02 Thread Anton Lindqvist
Hi,
I've been working with upstream (Kristaps) to bundle libdiff in lowdown
instead of requiring a new dependency. See the previous discussion[1]
for further reference.

Besides that, trivial bump from maintainer.

Comments? OK?

[1] https://marc.info/?l=openbsd-ports=153435837909825=2

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.12
diff -u -p -r1.12 Makefile
--- Makefile9 Jun 2018 22:05:46 -   1.12
+++ Makefile2 Sep 2018 16:54:17 -
@@ -2,7 +2,7 @@
 
 COMMENT =  simple markdown translator
 
-DISTNAME = lowdown-0.3.3
+DISTNAME = lowdown-0.4.1
 
 CATEGORIES =   textproc
 
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.11
diff -u -p -r1.11 distinfo
--- distinfo9 Jun 2018 22:05:46 -   1.11
+++ distinfo2 Sep 2018 16:54:17 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.3.3.tar.gz) = XsmwSYsR6iUoLWdO1oGpsvZ+pIfHpJM2kJHuuz1wPsU=
-SIZE (lowdown-0.3.3.tar.gz) = 87977
+SHA256 (lowdown-0.4.1.tar.gz) = pfsvpR2pwty9IjMucaizn8g4uQKZ4KyM3//SvHk0/Ow=
+SIZE (lowdown-0.4.1.tar.gz) = 94595
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.5
diff -u -p -r1.5 PLIST
--- pkg/PLIST   20 Oct 2017 13:48:09 -  1.5
+++ pkg/PLIST   2 Sep 2018 16:54:17 -
@@ -6,11 +6,13 @@ lib/liblowdown.a
 @man man/man1/lowdown.1
 @man man/man3/lowdown.3
 @man man/man3/lowdown_buf.3
+@man man/man3/lowdown_buf_diff.3
 @man man/man3/lowdown_doc_free.3
 @man man/man3/lowdown_doc_new.3
 @man man/man3/lowdown_doc_parse.3
 @man man/man3/lowdown_errstr.3
 @man man/man3/lowdown_file.3
+@man man/man3/lowdown_file_diff.3
 @man man/man3/lowdown_html_free.3
 @man man/man3/lowdown_html_new.3
 @man man/man3/lowdown_html_rndr.3



UPDATE: textproc/lowdown

2018-06-09 Thread Anton Lindqvist
Hi,
Update lowdown to 0.3.3 from maintainer. Changelog can be found here[1].

Comments? OK?

[1] https://kristaps.bsd.lv/lowdown/archive.html

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile
--- Makefile24 Apr 2018 15:09:47 -  1.11
+++ Makefile9 Jun 2018 20:54:27 -
@@ -2,8 +2,7 @@
 
 COMMENT =  simple markdown translator
 
-DISTNAME = lowdown-0.3.2
-REVISION = 0
+DISTNAME = lowdown-0.3.3
 
 CATEGORIES =   textproc
 
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.10
diff -u -p -r1.10 distinfo
--- distinfo24 Apr 2018 14:54:57 -  1.10
+++ distinfo9 Jun 2018 20:54:27 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.3.2.tar.gz) = dAz2AlxDzqrpvMH/w+lJhqpi1l2R74Fz1EShl3xWIJQ=
-SIZE (lowdown-0.3.2.tar.gz) = 87991
+SHA256 (lowdown-0.3.3.tar.gz) = XsmwSYsR6iUoLWdO1oGpsvZ+pIfHpJM2kJHuuz1wPsU=
+SIZE (lowdown-0.3.3.tar.gz) = 87977



Re: UPDATE: textproc/lowdown 0.3.1 to 0.3.2

2018-04-24 Thread Jeremie Courreges-Anglas
On Tue, Apr 24 2018, Anton Lindqvist  wrote:
> On Tue, Apr 24, 2018 at 04:48:09PM +0200, Jeremie Courreges-Anglas wrote:
>> On Mon, Apr 23 2018, Anton Lindqvist  wrote:
>> > On Sun, Apr 22, 2018 at 01:44:59PM -0800, Micah Muer wrote:
>> >> Here is a trivial update to the latest release of textproc/lowdown.
>> >> Builds and runs for me on amd64 current-. Changelog here
>> >> https://kristaps.bsd.lv/lowdown/archive.html
>> >> 
>> >> Thanks!
>> >
>> > Thanks, I have the same diff in my tree. Anyone else willing to OK?
>> 
>> port-lib-depends-check says:
>> 
>> Missing: m.10 (/usr/local/bin/lowdown-diff) (system lib)
>> WANTLIB += m
>> 
>> Please add it to WANTLIB -> ok jca@
>
> Ouch, managed to commit before reading your reply. Does this look ok?

Sure!

> Index: Makefile
> ===
> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> retrieving revision 1.10
> diff -u -p -r1.10 Makefile
> --- Makefile  24 Apr 2018 14:54:57 -  1.10
> +++ Makefile  24 Apr 2018 15:01:09 -
> @@ -3,6 +3,8 @@
>  COMMENT =simple markdown translator
>  
>  DISTNAME =   lowdown-0.3.2
> +REVISION =   0
> +
>  CATEGORIES = textproc
>  
>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
> @@ -12,7 +14,7 @@ MAINTAINER =Anton Lindqvist   PERMIT_PACKAGE_CDROM =   Yes
>  
>  # uses pledge()
> -WANTLIB +=   c
> +WANTLIB +=   c m
>  
>  MASTER_SITES =   https://kristaps.bsd.lv/lowdown/snapshots/
>  
>

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



Re: UPDATE: textproc/lowdown 0.3.1 to 0.3.2

2018-04-24 Thread Anton Lindqvist
On Tue, Apr 24, 2018 at 04:48:09PM +0200, Jeremie Courreges-Anglas wrote:
> On Mon, Apr 23 2018, Anton Lindqvist  wrote:
> > On Sun, Apr 22, 2018 at 01:44:59PM -0800, Micah Muer wrote:
> >> Here is a trivial update to the latest release of textproc/lowdown.
> >> Builds and runs for me on amd64 current-. Changelog here
> >> https://kristaps.bsd.lv/lowdown/archive.html
> >> 
> >> Thanks!
> >
> > Thanks, I have the same diff in my tree. Anyone else willing to OK?
> 
> port-lib-depends-check says:
> 
> Missing: m.10 (/usr/local/bin/lowdown-diff) (system lib)
> WANTLIB += m
> 
> Please add it to WANTLIB -> ok jca@

Ouch, managed to commit before reading your reply. Does this look ok?

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.10
diff -u -p -r1.10 Makefile
--- Makefile24 Apr 2018 14:54:57 -  1.10
+++ Makefile24 Apr 2018 15:01:09 -
@@ -3,6 +3,8 @@
 COMMENT =  simple markdown translator
 
 DISTNAME = lowdown-0.3.2
+REVISION = 0
+
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
@@ -12,7 +14,7 @@ MAINTAINER =  Anton Lindqvist 

Re: UPDATE: textproc/lowdown 0.3.1 to 0.3.2

2018-04-24 Thread Jeremie Courreges-Anglas
On Mon, Apr 23 2018, Anton Lindqvist  wrote:
> On Sun, Apr 22, 2018 at 01:44:59PM -0800, Micah Muer wrote:
>> Here is a trivial update to the latest release of textproc/lowdown.
>> Builds and runs for me on amd64 current-. Changelog here
>> https://kristaps.bsd.lv/lowdown/archive.html
>> 
>> Thanks!
>
> Thanks, I have the same diff in my tree. Anyone else willing to OK?

port-lib-depends-check says:

Missing: m.10 (/usr/local/bin/lowdown-diff) (system lib)
WANTLIB += m

Please add it to WANTLIB -> ok jca@

>> Index: Makefile
>> ===
>> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
>> retrieving revision 1.9
>> diff -u -p -u -p -r1.9 Makefile
>> --- Makefile 26 Oct 2017 18:03:54 -  1.9
>> +++ Makefile 22 Apr 2018 21:24:59 -
>> @@ -2,7 +2,7 @@
>>  
>>  COMMENT =   simple markdown translator
>>  
>> -DISTNAME =  lowdown-0.3.1
>> +DISTNAME =  lowdown-0.3.2
>>  CATEGORIES =textproc
>>  
>>  HOMEPAGE =  https://kristaps.bsd.lv/lowdown/
>> Index: distinfo
>> ===
>> RCS file: /cvs/ports/textproc/lowdown/distinfo,v
>> retrieving revision 1.9
>> diff -u -p -u -p -r1.9 distinfo
>> --- distinfo 26 Oct 2017 18:03:54 -  1.9
>> +++ distinfo 22 Apr 2018 21:24:59 -
>> @@ -1,2 +1,2 @@
>> -SHA256 (lowdown-0.3.1.tar.gz) = njeWx/gZo9KKjjBOrGDaYumPqZbK5BMdqXHY3q6kR2Y=
>> -SIZE (lowdown-0.3.1.tar.gz) = 87414
>> +SHA256 (lowdown-0.3.2.tar.gz) = dAz2AlxDzqrpvMH/w+lJhqpi1l2R74Fz1EShl3xWIJQ=
>> +SIZE (lowdown-0.3.2.tar.gz) = 87991
>

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



Re: UPDATE: textproc/lowdown 0.3.1 to 0.3.2

2018-04-24 Thread Anton Lindqvist
On Sun, Apr 22, 2018 at 01:44:59PM -0800, Micah Muer wrote:
> Here is a trivial update to the latest release of textproc/lowdown.
> Builds and runs for me on amd64 current-. Changelog here
> https://kristaps.bsd.lv/lowdown/archive.html
> 
> Thanks!

Thanks, I have the same diff in my tree. Anyone else willing to OK?

> Index: Makefile
> ===
> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> retrieving revision 1.9
> diff -u -p -u -p -r1.9 Makefile
> --- Makefile  26 Oct 2017 18:03:54 -  1.9
> +++ Makefile  22 Apr 2018 21:24:59 -
> @@ -2,7 +2,7 @@
>  
>  COMMENT =simple markdown translator
>  
> -DISTNAME =   lowdown-0.3.1
> +DISTNAME =   lowdown-0.3.2
>  CATEGORIES = textproc
>  
>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
> Index: distinfo
> ===
> RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> retrieving revision 1.9
> diff -u -p -u -p -r1.9 distinfo
> --- distinfo  26 Oct 2017 18:03:54 -  1.9
> +++ distinfo  22 Apr 2018 21:24:59 -
> @@ -1,2 +1,2 @@
> -SHA256 (lowdown-0.3.1.tar.gz) = njeWx/gZo9KKjjBOrGDaYumPqZbK5BMdqXHY3q6kR2Y=
> -SIZE (lowdown-0.3.1.tar.gz) = 87414
> +SHA256 (lowdown-0.3.2.tar.gz) = dAz2AlxDzqrpvMH/w+lJhqpi1l2R74Fz1EShl3xWIJQ=
> +SIZE (lowdown-0.3.2.tar.gz) = 87991



Re: UPDATE: textproc/lowdown 0.3.1 to 0.3.2

2018-04-24 Thread Anton Lindqvist
On Sun, Apr 22, 2018 at 01:44:59PM -0800, Micah Muer wrote:
> Here is a trivial update to the latest release of textproc/lowdown.
> Builds and runs for me on amd64 current-. Changelog here
> https://kristaps.bsd.lv/lowdown/archive.html
> 
> Thanks!

Thanks, I have the same diff in my tree. Anyone else willing to OK?

> 
> Index: Makefile
> ===
> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> retrieving revision 1.9
> diff -u -p -u -p -r1.9 Makefile
> --- Makefile  26 Oct 2017 18:03:54 -  1.9
> +++ Makefile  22 Apr 2018 21:24:59 -
> @@ -2,7 +2,7 @@
>  
>  COMMENT =simple markdown translator
>  
> -DISTNAME =   lowdown-0.3.1
> +DISTNAME =   lowdown-0.3.2
>  CATEGORIES = textproc
>  
>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
> Index: distinfo
> ===
> RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> retrieving revision 1.9
> diff -u -p -u -p -r1.9 distinfo
> --- distinfo  26 Oct 2017 18:03:54 -  1.9
> +++ distinfo  22 Apr 2018 21:24:59 -
> @@ -1,2 +1,2 @@
> -SHA256 (lowdown-0.3.1.tar.gz) = njeWx/gZo9KKjjBOrGDaYumPqZbK5BMdqXHY3q6kR2Y=
> -SIZE (lowdown-0.3.1.tar.gz) = 87414
> +SHA256 (lowdown-0.3.2.tar.gz) = dAz2AlxDzqrpvMH/w+lJhqpi1l2R74Fz1EShl3xWIJQ=
> +SIZE (lowdown-0.3.2.tar.gz) = 87991



UPDATE: textproc/lowdown 0.3.1 to 0.3.2

2018-04-22 Thread Micah Muer
Here is a trivial update to the latest release of textproc/lowdown.
Builds and runs for me on amd64 current-. Changelog here
https://kristaps.bsd.lv/lowdown/archive.html

Thanks!

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.9
diff -u -p -u -p -r1.9 Makefile
--- Makefile26 Oct 2017 18:03:54 -  1.9
+++ Makefile22 Apr 2018 21:24:59 -
@@ -2,7 +2,7 @@
 
 COMMENT =  simple markdown translator
 
-DISTNAME = lowdown-0.3.1
+DISTNAME = lowdown-0.3.2
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.9
diff -u -p -u -p -r1.9 distinfo
--- distinfo26 Oct 2017 18:03:54 -  1.9
+++ distinfo22 Apr 2018 21:24:59 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.3.1.tar.gz) = njeWx/gZo9KKjjBOrGDaYumPqZbK5BMdqXHY3q6kR2Y=
-SIZE (lowdown-0.3.1.tar.gz) = 87414
+SHA256 (lowdown-0.3.2.tar.gz) = dAz2AlxDzqrpvMH/w+lJhqpi1l2R74Fz1EShl3xWIJQ=
+SIZE (lowdown-0.3.2.tar.gz) = 87991



Re: UPDATE: textproc/lowdown

2017-10-26 Thread Jeremie Courreges-Anglas
On Thu, Oct 26 2017, Anton Lindqvist  wrote:
> Hi,
> Update lowdown to 0.3.1 from maintainer. Existing CFLAGS from the
> environment are now respected, pointed out by jca@ in the previous
> update[1]. Complete changelog can be found here[2].
>
> Comments? OK?

Nice.  ok jca@

>
> [1] https://marc.info/?l=openbsd-ports=150850262811216=2
> [2] https://kristaps.bsd.lv/lowdown/archive.html
>
> Index: Makefile
> ===
> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> retrieving revision 1.8
> diff -u -p -r1.8 Makefile
> --- Makefile  20 Oct 2017 13:48:09 -  1.8
> +++ Makefile  26 Oct 2017 14:25:55 -
> @@ -2,7 +2,7 @@
>  
>  COMMENT =simple markdown translator
>  
> -DISTNAME =   lowdown-0.3.0
> +DISTNAME =   lowdown-0.3.1
>  CATEGORIES = textproc
>  
>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
> Index: distinfo
> ===
> RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> retrieving revision 1.8
> diff -u -p -r1.8 distinfo
> --- distinfo  20 Oct 2017 13:48:09 -  1.8
> +++ distinfo  26 Oct 2017 14:25:55 -
> @@ -1,2 +1,2 @@
> -SHA256 (lowdown-0.3.0.tar.gz) = VJWimSJ+SSQbokFQZcCj8y7TM0g023qmEdZcXSy9V+c=
> -SIZE (lowdown-0.3.0.tar.gz) = 86661
> +SHA256 (lowdown-0.3.1.tar.gz) = njeWx/gZo9KKjjBOrGDaYumPqZbK5BMdqXHY3q6kR2Y=
> +SIZE (lowdown-0.3.1.tar.gz) = 87414
>

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



UPDATE: textproc/lowdown

2017-10-26 Thread Anton Lindqvist
Hi,
Update lowdown to 0.3.1 from maintainer. Existing CFLAGS from the
environment are now respected, pointed out by jca@ in the previous
update[1]. Complete changelog can be found here[2].

Comments? OK?

[1] https://marc.info/?l=openbsd-ports=150850262811216=2
[2] https://kristaps.bsd.lv/lowdown/archive.html

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.8
diff -u -p -r1.8 Makefile
--- Makefile20 Oct 2017 13:48:09 -  1.8
+++ Makefile26 Oct 2017 14:25:55 -
@@ -2,7 +2,7 @@
 
 COMMENT =  simple markdown translator
 
-DISTNAME = lowdown-0.3.0
+DISTNAME = lowdown-0.3.1
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.8
diff -u -p -r1.8 distinfo
--- distinfo20 Oct 2017 13:48:09 -  1.8
+++ distinfo26 Oct 2017 14:25:55 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.3.0.tar.gz) = VJWimSJ+SSQbokFQZcCj8y7TM0g023qmEdZcXSy9V+c=
-SIZE (lowdown-0.3.0.tar.gz) = 86661
+SHA256 (lowdown-0.3.1.tar.gz) = njeWx/gZo9KKjjBOrGDaYumPqZbK5BMdqXHY3q6kR2Y=
+SIZE (lowdown-0.3.1.tar.gz) = 87414



Re: UPDATE: textproc/lowdown

2017-10-20 Thread Anton Lindqvist
On Fri, Oct 20, 2017 at 02:28:01PM +0200, Jeremie Courreges-Anglas wrote:
> On Fri, Oct 20 2017, Anton Lindqvist  wrote:
> > Hi,
> > Update lowdown to 0.3.0 from maintainer. Changelog can be found here[1].
> >
> > Comments?
> 
> ''make clean all DEBUG=whatever'' doesn't pass "whatever" in CFLAGS.
> I fail to see how CFLAGS are passed to the underlying build system.
> This is already the case with lowdown-0.2.7, but it would be good to fix
> this.

I will take this upstream and make sure its fixed until the next
release.



Re: UPDATE: textproc/lowdown

2017-10-20 Thread Jeremie Courreges-Anglas
On Fri, Oct 20 2017, Anton Lindqvist  wrote:
> Hi,
> Update lowdown to 0.3.0 from maintainer. Changelog can be found here[1].
>
> Comments?

''make clean all DEBUG=whatever'' doesn't pass "whatever" in CFLAGS.
I fail to see how CFLAGS are passed to the underlying build system.
This is already the case with lowdown-0.2.7, but it would be good to fix
this.

> OK?

ok

> [1] https://kristaps.bsd.lv/lowdown/archive.html
>
> Index: Makefile
> ===
> RCS file: /cvs/ports/textproc/lowdown/Makefile,v
> retrieving revision 1.7
> diff -u -p -r1.7 Makefile
> --- Makefile  5 Oct 2017 08:08:19 -   1.7
> +++ Makefile  20 Oct 2017 09:23:11 -
> @@ -2,7 +2,7 @@
>  
>  COMMENT =simple markdown translator
>  
> -DISTNAME =   lowdown-0.2.7
> +DISTNAME =   lowdown-0.3.0
>  CATEGORIES = textproc
>  
>  HOMEPAGE =   https://kristaps.bsd.lv/lowdown/
> Index: distinfo
> ===
> RCS file: /cvs/ports/textproc/lowdown/distinfo,v
> retrieving revision 1.7
> diff -u -p -r1.7 distinfo
> --- distinfo  5 Oct 2017 08:08:19 -   1.7
> +++ distinfo  20 Oct 2017 09:23:11 -
> @@ -1,2 +1,2 @@
> -SHA256 (lowdown-0.2.7.tar.gz) = yWwQXCMUhIQ6jTjot96ySO93NoEJU7kon2E/7513feE=
> -SIZE (lowdown-0.2.7.tar.gz) = 72312
> +SHA256 (lowdown-0.3.0.tar.gz) = VJWimSJ+SSQbokFQZcCj8y7TM0g023qmEdZcXSy9V+c=
> +SIZE (lowdown-0.3.0.tar.gz) = 86661
> Index: pkg/PLIST
> ===
> RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
> retrieving revision 1.4
> diff -u -p -r1.4 PLIST
> --- pkg/PLIST 5 Oct 2017 08:08:19 -   1.4
> +++ pkg/PLIST 20 Oct 2017 09:23:11 -
> @@ -1,5 +1,6 @@
>  @comment $OpenBSD: PLIST,v 1.4 2017/10/05 08:08:19 anton Exp $
>  @bin bin/lowdown
> +@bin bin/lowdown-diff
>  include/lowdown.h
>  lib/liblowdown.a
>  @man man/man1/lowdown.1
>

-- 
jca | PGP : 0x1524E7EE / 5135 92C1 AD36 5293 2BDF  DDCC 0DFA 74AE 1524 E7EE



UPDATE: textproc/lowdown

2017-10-20 Thread Anton Lindqvist
Hi,
Update lowdown to 0.3.0 from maintainer. Changelog can be found here[1].

Comments? OK?

[1] https://kristaps.bsd.lv/lowdown/archive.html

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile5 Oct 2017 08:08:19 -   1.7
+++ Makefile20 Oct 2017 09:23:11 -
@@ -2,7 +2,7 @@
 
 COMMENT =  simple markdown translator
 
-DISTNAME = lowdown-0.2.7
+DISTNAME = lowdown-0.3.0
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- distinfo5 Oct 2017 08:08:19 -   1.7
+++ distinfo20 Oct 2017 09:23:11 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.2.7.tar.gz) = yWwQXCMUhIQ6jTjot96ySO93NoEJU7kon2E/7513feE=
-SIZE (lowdown-0.2.7.tar.gz) = 72312
+SHA256 (lowdown-0.3.0.tar.gz) = VJWimSJ+SSQbokFQZcCj8y7TM0g023qmEdZcXSy9V+c=
+SIZE (lowdown-0.3.0.tar.gz) = 86661
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.4
diff -u -p -r1.4 PLIST
--- pkg/PLIST   5 Oct 2017 08:08:19 -   1.4
+++ pkg/PLIST   20 Oct 2017 09:23:11 -
@@ -1,5 +1,6 @@
 @comment $OpenBSD: PLIST,v 1.4 2017/10/05 08:08:19 anton Exp $
 @bin bin/lowdown
+@bin bin/lowdown-diff
 include/lowdown.h
 lib/liblowdown.a
 @man man/man1/lowdown.1



Re: UPDATE: textproc/lowdown

2017-10-05 Thread Rafael Sadowski
On Thu Oct 05, 2017 at 07:46:49AM +, Anton Lindqvist wrote:
> Hi,
> Update lowdown to 0.2.7 from maintainer. Most notably, a reference
> manual of the Markdown accepted by lowdown has been added. Complete
> changelog can be found here[1].
> 
> Comments? OK?
> 
> [1] https://kristaps.bsd.lv/lowdown/archive.html
> 

Builds fine with clang-base, gcc-base and gcc-ports.

ok rsadowski@



UPDATE: textproc/lowdown

2017-10-05 Thread Anton Lindqvist
Hi,
Update lowdown to 0.2.7 from maintainer. Most notably, a reference
manual of the Markdown accepted by lowdown has been added. Complete
changelog can be found here[1].

Comments? OK?

[1] https://kristaps.bsd.lv/lowdown/archive.html

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.6
diff -u -p -r1.6 Makefile
--- Makefile7 Sep 2017 07:03:24 -   1.6
+++ Makefile5 Oct 2017 07:42:00 -
@@ -2,7 +2,7 @@
 
 COMMENT =  simple markdown translator
 
-DISTNAME = lowdown-0.2.4
+DISTNAME = lowdown-0.2.7
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.6
diff -u -p -r1.6 distinfo
--- distinfo7 Sep 2017 07:03:24 -   1.6
+++ distinfo5 Oct 2017 07:42:00 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.2.4.tar.gz) = TMbqByJE+617RPqj4CjzNvP26UIvqazCY9LCwlDkOog=
-SIZE (lowdown-0.2.4.tar.gz) = 64693
+SHA256 (lowdown-0.2.7.tar.gz) = yWwQXCMUhIQ6jTjot96ySO93NoEJU7kon2E/7513feE=
+SIZE (lowdown-0.2.7.tar.gz) = 72312
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.3
diff -u -p -r1.3 PLIST
--- pkg/PLIST   7 Sep 2017 07:03:24 -   1.3
+++ pkg/PLIST   5 Oct 2017 07:42:00 -
@@ -19,3 +19,4 @@ lib/liblowdown.a
 @man man/man3/lowdown_tree_free.3
 @man man/man3/lowdown_tree_new.3
 @man man/man3/lowdown_tree_rndr.3
+@man man/man5/lowdown.5



UPDATE: textproc/lowdown

2017-07-18 Thread Anton Lindqvist
Hi,
Update lowdown to 0.1.12 from maintainer, changelog below:

- Fix how the final metadata with multiple lines wouldn't have the last
  line processed.

Comments? OK?

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.4
diff -u -p -r1.4 Makefile
--- Makefile29 May 2017 11:03:50 -  1.4
+++ Makefile18 Jul 2017 19:24:59 -
@@ -2,7 +2,7 @@
 
 COMMENT =  simple markdown translator
 
-DISTNAME = lowdown-0.1.11
+DISTNAME = lowdown-0.1.12
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.4
diff -u -p -r1.4 distinfo
--- distinfo29 May 2017 11:03:50 -  1.4
+++ distinfo18 Jul 2017 19:24:59 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.1.11.tar.gz) = 1/bl3J3Bld5OyK4N7nL5VzPfWlIN8dCoo684Xa8OLSw=
-SIZE (lowdown-0.1.11.tar.gz) = 56149
+SHA256 (lowdown-0.1.12.tar.gz) = CofJg0FPKKHBHoDO3O8CHQETo2PHotZReCfas0VxwlM=
+SIZE (lowdown-0.1.12.tar.gz) = 56232



UPDATE: textproc/lowdown

2017-05-29 Thread Anton Lindqvist
Hi,
Update lowdown to 0.1.11 from maintainer, see changelog below:

- Support `[%metadata]` embedded in documents. (Thanks to Anton
  Lindqvist for furnishing several patches for metadata!) Note that
  lowdown doesn't do anything with metadata beyond pasting or standalone
  document creation. Metadata has also been expanded to allow for
  multiple authors.

- Add the `nroff-numbered` output mode option for numbered sections. (None
  for HTML5 because it can be done with CSS.)

- Add some default roff goop to the standalone `-Tms` file for prettier
  section names.

While here, update my own email.

Comments? OK?

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.3
diff -u -p -r1.3 Makefile
--- Makefile18 Mar 2017 09:53:37 -  1.3
+++ Makefile29 May 2017 07:29:07 -
@@ -2,11 +2,11 @@
 
 COMMENT =  simple markdown translator
 
-DISTNAME = lowdown-0.1.10
+DISTNAME = lowdown-0.1.11
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
-MAINTAINER =   Anton Lindqvist 
+MAINTAINER =   Anton Lindqvist 
 
 # ISC
 PERMIT_PACKAGE_CDROM = Yes
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.3
diff -u -p -r1.3 distinfo
--- distinfo18 Mar 2017 09:53:37 -  1.3
+++ distinfo29 May 2017 07:29:07 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.1.10.tar.gz) = 7vL8svd3njbQpgnA7C6wiRNAV/yxomqT6ZNQp9jC1yk=
-SIZE (lowdown-0.1.10.tar.gz) = 53750
+SHA256 (lowdown-0.1.11.tar.gz) = 1/bl3J3Bld5OyK4N7nL5VzPfWlIN8dCoo684Xa8OLSw=
+SIZE (lowdown-0.1.11.tar.gz) = 56149



UPDATE: textproc/lowdown

2017-03-18 Thread Anton Lindqvist
Hi,
Update lowdown to 0.1.10, from maintainer.

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.2
diff -u -p -r1.2 Makefile
--- Makefile5 Mar 2017 17:10:41 -   1.2
+++ Makefile17 Mar 2017 21:09:38 -
@@ -2,7 +2,7 @@
 
 COMMENT =  simple markdown translator
 
-DISTNAME = lowdown-0.1.9
+DISTNAME = lowdown-0.1.10
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- distinfo5 Mar 2017 17:10:41 -   1.2
+++ distinfo17 Mar 2017 21:09:38 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.1.9.tar.gz) = O4CfnLTPaRK7L3BmbN8YbSVT8av9VJq1N7eCtGiMTnE=
-SIZE (lowdown-0.1.9.tar.gz) = 52896
+SHA256 (lowdown-0.1.10.tar.gz) = 7vL8svd3njbQpgnA7C6wiRNAV/yxomqT6ZNQp9jC1yk=
+SIZE (lowdown-0.1.10.tar.gz) = 53750



Re: UPDATE: textproc/lowdown

2017-03-05 Thread Daniel Jakots
On Sun, 5 Mar 2017 16:40:32 +0100, Anton Lindqvist
 wrote:

> Hi,
> Here's an update of lowdown to 0.1.9. I'm a lowdown contributor and
> Kristaps asked me to maintain the port, which I don't mind. Summary of
> changes:
> 
> - Make use of the new simple configure script
> 
> - Install liblowdown and corresponding header and man-page
> 
> - Add missing pledge comment

Thanks, committed! 



UPDATE: textproc/lowdown

2017-03-05 Thread Anton Lindqvist
Hi,
Here's an update of lowdown to 0.1.9. I'm a lowdown contributor and
Kristaps asked me to maintain the port, which I don't mind. Summary of
changes:

- Make use of the new simple configure script

- Install liblowdown and corresponding header and man-page

- Add missing pledge comment

Index: Makefile
===
RCS file: /cvs/ports/textproc/lowdown/Makefile,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 Makefile
--- Makefile28 Dec 2016 16:58:57 -  1.1.1.1
+++ Makefile5 Mar 2017 13:24:34 -
@@ -2,20 +2,22 @@
 
 COMMENT =  simple markdown translator
 
-DISTNAME = lowdown-0.1.1
+DISTNAME = lowdown-0.1.9
 CATEGORIES =   textproc
 
 HOMEPAGE = https://kristaps.bsd.lv/lowdown/
-MAINTAINER =   Kristaps Dzonsons 
+MAINTAINER =   Anton Lindqvist 
 
 # ISC
 PERMIT_PACKAGE_CDROM = Yes
 
+# uses pledge()
 WANTLIB += c
 
 MASTER_SITES = https://kristaps.bsd.lv/lowdown/snapshots/
 
-MAKE_FLAGS =   PREFIX="${PREFIX}"
+CONFIGURE_STYLE =  simple
+CONFIGURE_ENV =PREFIX="${PREFIX}"
 NO_TEST =  Yes
 ALL_TARGET =   lowdown
 
Index: distinfo
===
RCS file: /cvs/ports/textproc/lowdown/distinfo,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 distinfo
--- distinfo28 Dec 2016 16:58:57 -  1.1.1.1
+++ distinfo5 Mar 2017 13:24:34 -
@@ -1,2 +1,2 @@
-SHA256 (lowdown-0.1.1.tar.gz) = gA7GFl0/r5l+/+5Yz/NifRk9IL41FJzYOPrvBaHXloc=
-SIZE (lowdown-0.1.1.tar.gz) = 40718
+SHA256 (lowdown-0.1.9.tar.gz) = O4CfnLTPaRK7L3BmbN8YbSVT8av9VJq1N7eCtGiMTnE=
+SIZE (lowdown-0.1.9.tar.gz) = 52896
Index: pkg/PLIST
===
RCS file: /cvs/ports/textproc/lowdown/pkg/PLIST,v
retrieving revision 1.1.1.1
diff -u -p -r1.1.1.1 PLIST
--- pkg/PLIST   28 Dec 2016 16:58:57 -  1.1.1.1
+++ pkg/PLIST   5 Mar 2017 13:24:34 -
@@ -1,3 +1,6 @@
 @comment $OpenBSD: PLIST,v 1.1.1.1 2016/12/28 16:58:57 jturner Exp $
 @bin bin/lowdown
+include/lowdown.h
+lib/liblowdown.a
 @man man/man1/lowdown.1
+@man man/man3/lowdown.3