Sat Mar 7 22:17:01 2020 UTC ()
lowdown: update to 0.6.1.

ChangeLog:

lowdown 0.6.1:

- Quick fix: we never actually... printed for the diff.

lowdown 0.6.0:

- Pull in newest oconfigure.
- Add common usage.
- Emit surrounding <p> for a list item if it's in a block and not already
  containing block element(s).
- Bring docs up to date with code.
- Allow blank-separated definition key/value pairs to trigger block mode.
- Record whether a paragraph ends with a blank line or not.
- Proper styling of line prefixes.
- Get proper spacing for definition lists with -Tterm.
- Paragraphs in definition values don't get two newlines.
- Don't needlessly break up paragraphs that have a dli prefix in them when
  within a list context.
- Show in alpha order.
- Document definition lists.
- Make line breaking around definition lists consistent.
- Merge multiple definition lists.
- Report definition list status.
- Complete parsing support for single-title description lists.  There's
  still work to be done, but this covers most uses.
- Recognise two newlines before a dli prefix as starting a block dli.
- Parse multiple definition list titles, don't parse zero-length trailing
  definition list data,  and properly form nroff definition lists w/multiple
  datas.
- Add definition lists to -Tterm, documentation to nroff, forgotten header
  change.
- Add nroff support for definition lists and clean up regular lists, too.
- Parse definition lists by default and add disabling documentation for them.
- Support for definition lists.
- const-ify and make sure formatters don't puke on definition lists.
- Add initial support for PHP Markdown Extra (and the many others inheriting
  this functionality) definition lists.  So far very simple and not enabled
  by default.


(fcambus)
diff -r1.6 -r1.7 pkgsrc/textproc/lowdown/Makefile
diff -r1.3 -r1.4 pkgsrc/textproc/lowdown/PLIST
diff -r1.4 -r1.5 pkgsrc/textproc/lowdown/distinfo

cvs diff -r1.6 -r1.7 pkgsrc/textproc/lowdown/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/lowdown/Makefile 2019/12/12 20:00:08 1.6
+++ pkgsrc/textproc/lowdown/Makefile 2020/03/07 22:17:01 1.7
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.6 2019/12/12 20:00:08 fcambus Exp $ 1# $NetBSD: Makefile,v 1.7 2020/03/07 22:17:01 fcambus Exp $
2 2
3DISTNAME= lowdown-0.4.6 3DISTNAME= lowdown-0.6.1
4CATEGORIES= textproc 4CATEGORIES= textproc
5MASTER_SITES= https://kristaps.bsd.lv/lowdown/snapshots/ 5MASTER_SITES= https://kristaps.bsd.lv/lowdown/snapshots/
6 6
7MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
8HOMEPAGE= https://kristaps.bsd.lv/lowdown/ 8HOMEPAGE= https://kristaps.bsd.lv/lowdown/
9COMMENT= Simple Markdown translator 9COMMENT= Simple Markdown translator
10LICENSE= 2-clause-bsd 10LICENSE= 2-clause-bsd
11 11
12HAS_CONFIGURE= yes 12HAS_CONFIGURE= yes
13 13
14SUBST_CLASSES+= install 14SUBST_CLASSES+= install
15SUBST_SED.install+= -e 's,/usr/local,${PREFIX},' \ 15SUBST_SED.install+= -e 's,/usr/local,${PREFIX},' \
16 -e 's,^MANDIR=.*,MANDIR=${PREFIX}/${PKGMANDIR},' \ 16 -e 's,^MANDIR=.*,MANDIR=${PREFIX}/${PKGMANDIR},' \

cvs diff -r1.3 -r1.4 pkgsrc/textproc/lowdown/PLIST (expand / switch to unified diff)

--- pkgsrc/textproc/lowdown/PLIST 2018/10/17 07:01:39 1.3
+++ pkgsrc/textproc/lowdown/PLIST 2020/03/07 22:17:01 1.4
@@ -1,25 +1,27 @@ @@ -1,25 +1,27 @@
1@comment $NetBSD: PLIST,v 1.3 2018/10/17 07:01:39 maya Exp $ 1@comment $NetBSD: PLIST,v 1.4 2020/03/07 22:17:01 fcambus Exp $
2bin/lowdown 2bin/lowdown
3bin/lowdown-diff 3bin/lowdown-diff
4include/lowdown.h 4include/lowdown.h
5lib/liblowdown.a 5lib/liblowdown.a
6man/man1/lowdown.1 6man/man1/lowdown.1
7man/man3/lowdown.3 7man/man3/lowdown.3
8man/man3/lowdown_buf.3 8man/man3/lowdown_buf.3
9man/man3/lowdown_buf_diff.3 9man/man3/lowdown_buf_diff.3
10man/man3/lowdown_doc_free.3 10man/man3/lowdown_doc_free.3
11man/man3/lowdown_doc_new.3 11man/man3/lowdown_doc_new.3
12man/man3/lowdown_doc_parse.3 12man/man3/lowdown_doc_parse.3
13man/man3/lowdown_errstr.3 
14man/man3/lowdown_file.3 13man/man3/lowdown_file.3
15man/man3/lowdown_file_diff.3 14man/man3/lowdown_file_diff.3
16man/man3/lowdown_html_free.3 15man/man3/lowdown_html_free.3
17man/man3/lowdown_html_new.3 16man/man3/lowdown_html_new.3
18man/man3/lowdown_html_rndr.3 17man/man3/lowdown_html_rndr.3
19man/man3/lowdown_nroff_free.3 18man/man3/lowdown_nroff_free.3
20man/man3/lowdown_nroff_new.3 19man/man3/lowdown_nroff_new.3
21man/man3/lowdown_nroff_rndr.3 20man/man3/lowdown_nroff_rndr.3
 21man/man3/lowdown_term_free.3
 22man/man3/lowdown_term_new.3
 23man/man3/lowdown_term_rndr.3
22man/man3/lowdown_tree_free.3 24man/man3/lowdown_tree_free.3
23man/man3/lowdown_tree_new.3 25man/man3/lowdown_tree_new.3
24man/man3/lowdown_tree_rndr.3 26man/man3/lowdown_tree_rndr.3
25man/man5/lowdown.5 27man/man5/lowdown.5

cvs diff -r1.4 -r1.5 pkgsrc/textproc/lowdown/distinfo (expand / switch to unified diff)

--- pkgsrc/textproc/lowdown/distinfo 2019/12/12 20:00:08 1.4
+++ pkgsrc/textproc/lowdown/distinfo 2020/03/07 22:17:01 1.5
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.4 2019/12/12 20:00:08 fcambus Exp $ 1$NetBSD: distinfo,v 1.5 2020/03/07 22:17:01 fcambus Exp $
2 2
3SHA1 (lowdown-0.4.6.tar.gz) = afcb4cf46d0e70d5147a8e18f8b5714d568e840c 3SHA1 (lowdown-0.6.1.tar.gz) = 9946bb8331913c9bdea40fad015b460b70fb42ce
4RMD160 (lowdown-0.4.6.tar.gz) = c3460a91d7d9b54b7c0ba92b36939906c738654a 4RMD160 (lowdown-0.6.1.tar.gz) = 355f7443331f29e6acc656129c29e2b959772774
5SHA512 (lowdown-0.4.6.tar.gz) = cf626683289c81afe5c84e9c835ba6739a2c970891fb8080ff6bdc07692d91e60429d8d481bd9951d4ff4b0424e7c196ec597ddfcb8d218df324642efe564e15 5SHA512 (lowdown-0.6.1.tar.gz) = bbd431431850492406889d67ebe11ad5e2542293d4a30f8f0c7a2d0377291b35f484437a9d07474d1853d9839b22271026160c6be31bf78843488fb5cafc880e
6Size (lowdown-0.4.6.tar.gz) = 103959 bytes 6Size (lowdown-0.6.1.tar.gz) = 122806 bytes