pkgsrc-Changes archive

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

CVS commit: pkgsrc/converters/hs-pandoc



Module Name:    pkgsrc
Committed By:   pho
Date:           Thu Jan 30 14:20:09 UTC 2025

Modified Files:
        pkgsrc/converters/hs-pandoc: Makefile PLIST buildlink3.mk distinfo
            version.mk

Log Message:
converters/hs-pandoc: update to pandoc-3.6.2

## pandoc 3.6.2 (2025-01-12)

  * New output format: `pod` (Evan Silberman). Pod ("Plain old documentation")
    is a markup languaged used principally to document Perl modules and
    programs.

  * New reader module Text.Pandoc.Readers.Pod, exporting `readPod`
    [API change].

  * Docx reader:

    + Support row heads in tables (#9495). Reader: When `w:tblLook` has
      `w:firstColumn` set (or an equivalent bit mask), we set row heads = 1
      in the AST.
    + Read table styles as custom styles when `styles` extension
      is enabled (#9603).

  * HTML reader:

    + Add size information for font awesome SVG icons (#10134).
      If the icon has class `fa-fw` or `fa-w16` or `fa-w14`, we add a width
      attribute to prevent the icon from appearing full-width in PDF or
      docx output.

  * Djot reader:

    + Use a Span with class "mark" rather than "highlighted" for
      highlighted text, for consistency with the other pandoc readers and
      writers.

  * mandoc reader:

    + Add mdoc St for C23 (Evan Silberman).

  * RST reader:

    + Fix handling of underscores (#10497). Fixes a a regression
      introduced in 3.6.

  * Docx writer:

    + Support row heads in tables (#9495). Writer: set `w:firstColumn` in
      `w:tblLook` when there are row heads. (Word only allows one, so this
      is triggered by any number of row heads > 0.)

  * Djot writer:

    + Render a Span with sole class "mark" as highlighted text.

  * Asciidoc writer:

    + Don't emit the class in a span if it's just "mark" (#10511).
      The "mark" class is used for highlighting, and Asciidoc treats
      bare `#...#` with no attributes as highlighted text.
    + Improve escaping (#10385, #2337, #6424).

  * EPUB v2 writer:

    + Fix cover image (#10505).  This is a regression introduced in 3.6.

  * Typst writer:

    + Fix handling of pixel image dimensions (#9945).
      These are now converted to inches as in the LaTeX writer.

  * Improve error message given when users specify `asciidoc` as input
    format (#8416, Santiago Zarate).

  * Allow random 1.3.

  * Use texmath 0.12.8.13 (typst improvements).

  * `lua-filters.md`: document `system.os` return values (#10523).

  * `MANUAL.txt`:

    + Improve manual's coverage of custom styles.
    + Replace LibreOffice PDF documentation link to latest so it links
      to the latest major release rather than a specific major release
      (which there are two of every year) (Stéphane Guillou).
    + Improve links and descriptions for `odt`, `opendocument` (#10518).


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/converters/hs-pandoc/Makefile \
    pkgsrc/converters/hs-pandoc/buildlink3.mk
cvs rdiff -u -r1.2 -r1.3 pkgsrc/converters/hs-pandoc/PLIST \
    pkgsrc/converters/hs-pandoc/distinfo \
    pkgsrc/converters/hs-pandoc/version.mk

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

Modified files:

Index: pkgsrc/converters/hs-pandoc/Makefile
diff -u pkgsrc/converters/hs-pandoc/Makefile:1.6 pkgsrc/converters/hs-pandoc/Makefile:1.7
--- pkgsrc/converters/hs-pandoc/Makefile:1.6    Fri Jan 10 10:35:57 2025
+++ pkgsrc/converters/hs-pandoc/Makefile        Thu Jan 30 14:20:09 2025
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2025/01/10 10:35:57 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2025/01/30 14:20:09 pho Exp $
 
 .include "../../converters/hs-pandoc/version.mk"
 DISTNAME=      pandoc-${PANDOC_VERSION}
@@ -16,17 +16,7 @@ LICENSE=     gnu-gpl-v2
 HASKELL_OPTIMIZATION_LEVEL=    1
 
 HASKELL_UNRESTRICT_DEPENDENCIES+=      \
-       citeproc        \
-       commonmark      \
-       commonmark-extensions   \
-       commonmark-pandoc       \
-       djot    \
-       doclayout       \
-       emojis  \
-       skylighting     \
-       skylighting-core        \
-       texmath \
-       typst
+       xml-conduit
 
 # lib:pandoc
 .include "../../textproc/hs-Glob/buildlink3.mk"
Index: pkgsrc/converters/hs-pandoc/buildlink3.mk
diff -u pkgsrc/converters/hs-pandoc/buildlink3.mk:1.6 pkgsrc/converters/hs-pandoc/buildlink3.mk:1.7
--- pkgsrc/converters/hs-pandoc/buildlink3.mk:1.6       Fri Jan 10 10:35:57 2025
+++ pkgsrc/converters/hs-pandoc/buildlink3.mk   Thu Jan 30 14:20:09 2025
@@ -1,12 +1,12 @@
-# $NetBSD: buildlink3.mk,v 1.6 2025/01/10 10:35:57 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.7 2025/01/30 14:20:09 pho Exp $
 
 BUILDLINK_TREE+=       hs-pandoc
 
 .if !defined(HS_PANDOC_BUILDLINK3_MK)
 HS_PANDOC_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.hs-pandoc+=      hs-pandoc>=3.6.1
-BUILDLINK_ABI_DEPENDS.hs-pandoc+=      hs-pandoc>=3.6.1
+BUILDLINK_API_DEPENDS.hs-pandoc+=      hs-pandoc>=3.6.2
+BUILDLINK_ABI_DEPENDS.hs-pandoc+=      hs-pandoc>=3.6.2
 BUILDLINK_PKGSRCDIR.hs-pandoc?=                ../../converters/hs-pandoc
 
 # lib:pandoc

Index: pkgsrc/converters/hs-pandoc/PLIST
diff -u pkgsrc/converters/hs-pandoc/PLIST:1.2 pkgsrc/converters/hs-pandoc/PLIST:1.3
--- pkgsrc/converters/hs-pandoc/PLIST:1.2       Fri Jan 10 10:35:57 2025
+++ pkgsrc/converters/hs-pandoc/PLIST   Thu Jan 30 14:20:09 2025
@@ -1,7 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2025/01/10 10:35:57 wiz Exp $
-lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-description/1
-lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-description/2
-lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-id
+@comment $NetBSD: PLIST,v 1.3 2025/01/30 14:20:09 pho Exp $
 ${PLIST.shlibs}lib/${HS_PLATFORM}/libHS${HS_PKGID.1}-${HS_VER}.so
 ${PLIST.shlibs}lib/${HS_PLATFORM}/libHS${HS_PKGID.2}-${HS_VER}.so
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.1}/Text/Pandoc/XML/Light.dyn_hi
@@ -393,6 +390,9 @@ ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKG
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Org/Shared.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Org/Shared.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Org/Shared.p_hi
+${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Pod.dyn_hi
+lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Pod.hi
+${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/Pod.p_hi
 ${PLIST.shlibs}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/RIS.dyn_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/RIS.hi
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/Readers/RIS.p_hi
@@ -680,161 +680,9 @@ lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pa
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/Text/Pandoc/XML.p_hi
 lib/${HS_PLATFORM}/${HS_PKGID.2}/libHS${HS_PKGID.2}.a
 ${PLIST.prof}lib/${HS_PLATFORM}/${HS_PKGID.2}/libHS${HS_PKGID.2}_p.a
-share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/COPYING.md
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-App.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Asciify.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Chunks.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Citeproc.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Class-IO.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Class.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Data.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Emoji.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Error.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Extensions.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Filter.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Format.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Highlighting.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-ImageSize.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Logging.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-MIME.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-MediaBag.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Options.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-PDF.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Parsing.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Process.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-BibTeX.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CSV.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CommonMark.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Creole.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CslJson.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Djot.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-DocBook.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Docx.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-DokuWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-EPUB.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-EndNote.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-FB2.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-HTML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Haddock.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Ipynb.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-JATS.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Jira.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-LaTeX.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Man.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Markdown.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Mdoc.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-MediaWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Muse.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Native.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-ODT.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-OPML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Org.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RIS.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RST.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RTF.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-TWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Textile.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-TikiWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Txt2Tags.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Typst.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Vimwiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Scripting.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-SelfContained.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Shared.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Slides.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Sources.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Templates.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Transforms.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Translations-Types.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Translations.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-UTF8.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Version.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ANSI.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-AnnotatedTable.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-AsciiDoc.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-BibTeX.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ChunkedHTML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-CommonMark.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ConTeXt.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-CslJson.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Djot.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-DocBook.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Docx.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-DokuWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-EPUB.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-FB2.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-HTML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Haddock.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ICML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Ipynb.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-JATS.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Jira.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-LaTeX.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Man.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Markdown.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Math.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-MediaWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Ms.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Muse.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Native.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ODT.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OOXML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OPML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OpenDocument.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Org.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Powerpoint.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-RST.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-RTF.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Shared.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-TEI.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Texinfo.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Textile.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Typst.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-XWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ZimWiki.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Output.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Proc.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Types.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-60.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-A.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-All.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-B.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-C.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-D.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-E.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-F.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-G.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-H.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-I.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-J.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-K.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-L.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-M.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-N.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-O.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-P.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Q.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-R.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-S.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-T.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-U.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-V.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-W.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Y.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Z.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/haddock-bundle.min.js
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/index.html
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/linuwial.css
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/meta.json
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/pandoc.haddock
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/quick-jump.css
-${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/synopsis.png
+lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-description/1
+lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-description/2
+lib/pandoc-${PKGVERSION}/${HS_VERSION}/package-id
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/COPYRIGHT
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/MANUAL.txt
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/citeproc/biblatex-localization/UKenglish.lbx.strings
@@ -1129,3 +977,159 @@ share/${HS_PLATFORM}/pandoc-${PKGVERSION
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/vi.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/zh-Hans.yaml
 share/${HS_PLATFORM}/pandoc-${PKGVERSION}/data/translations/zh-Hant.yaml
+share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/COPYING.md
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-App.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Asciify.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Chunks.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Citeproc.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Class-IO.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Class.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Data.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Emoji.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Error.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Extensions.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Filter.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Format.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Highlighting.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-ImageSize.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Logging.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-MIME.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-MediaBag.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Options.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-PDF.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Parsing.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Process.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-BibTeX.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CSV.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CommonMark.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Creole.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-CslJson.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Djot.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-DocBook.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Docx.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-DokuWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-EPUB.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-EndNote.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-FB2.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-HTML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Haddock.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Ipynb.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-JATS.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Jira.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-LaTeX.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Man.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Markdown.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Mdoc.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-MediaWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Muse.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Native.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-ODT.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-OPML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Org.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Pod.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RIS.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RST.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-RTF.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-TWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Textile.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-TikiWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Txt2Tags.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Typst.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers-Vimwiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Readers.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Scripting.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-SelfContained.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Shared.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Slides.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Sources.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Templates.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Transforms.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Translations-Types.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Translations.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-UTF8.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Version.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ANSI.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-AnnotatedTable.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-AsciiDoc.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-BibTeX.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ChunkedHTML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-CommonMark.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ConTeXt.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-CslJson.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Djot.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-DocBook.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Docx.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-DokuWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-EPUB.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-FB2.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-HTML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Haddock.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ICML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Ipynb.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-JATS.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Jira.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-LaTeX.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Man.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Markdown.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Math.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-MediaWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Ms.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Muse.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Native.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ODT.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OOXML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OPML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-OpenDocument.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Org.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Powerpoint.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-RST.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-RTF.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Shared.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-TEI.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Texinfo.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Textile.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-Typst.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-XWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers-ZimWiki.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-Writers.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Output.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Proc.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light-Types.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML-Light.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc-XML.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/Text-Pandoc.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-60.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-A.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-All.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-B.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-C.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-D.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-E.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-F.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-G.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-H.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-I.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-J.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-K.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-L.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-M.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-N.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-O.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-P.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Q.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-R.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-S.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-T.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-U.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-V.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-W.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Y.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index-Z.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/doc-index.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/haddock-bundle.min.js
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/index.html
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/linuwial.css
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/meta.json
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/pandoc.haddock
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/quick-jump.css
+${PLIST.doc}share/doc/${HS_PLATFORM}/pandoc-${PKGVERSION}/html/synopsis.png
Index: pkgsrc/converters/hs-pandoc/distinfo
diff -u pkgsrc/converters/hs-pandoc/distinfo:1.2 pkgsrc/converters/hs-pandoc/distinfo:1.3
--- pkgsrc/converters/hs-pandoc/distinfo:1.2    Fri Jan 10 10:35:57 2025
+++ pkgsrc/converters/hs-pandoc/distinfo        Thu Jan 30 14:20:09 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2025/01/10 10:35:57 wiz Exp $
+$NetBSD: distinfo,v 1.3 2025/01/30 14:20:09 pho Exp $
 
-BLAKE2s (pandoc-3.6.1.tar.gz) = 2d28deb47bb3c8d3cc3388cb9cd53edc74d3ee88e62d5b6db0b88ecdd2985497
-SHA512 (pandoc-3.6.1.tar.gz) = 5db6ee03b7e023fb235aadce92be429052e3094ff89b156f0098a5d09e0baab9dfd147d2e0ec31e92f07889029af3743875de8f48b22d70ccda26c1556b8e91f
-Size (pandoc-3.6.1.tar.gz) = 7513641 bytes
+BLAKE2s (pandoc-3.6.2.tar.gz) = e3b7ba8396d12829b69bd36de6f439081cba75ad077d042e173e7f25ada78442
+SHA512 (pandoc-3.6.2.tar.gz) = 45dca6753aebf5e4d58b8dd30f449e72f8956f3b4939d272202c17abca8b691fcf25691372c4da78fff2f98bb6973cd6d95072a357fb36fd33fd8e5121ba81e5
+Size (pandoc-3.6.2.tar.gz) = 7537832 bytes
Index: pkgsrc/converters/hs-pandoc/version.mk
diff -u pkgsrc/converters/hs-pandoc/version.mk:1.2 pkgsrc/converters/hs-pandoc/version.mk:1.3
--- pkgsrc/converters/hs-pandoc/version.mk:1.2  Fri Jan 10 10:35:57 2025
+++ pkgsrc/converters/hs-pandoc/version.mk      Thu Jan 30 14:20:09 2025
@@ -1,6 +1,6 @@
-# $NetBSD: version.mk,v 1.2 2025/01/10 10:35:57 wiz Exp $
+# $NetBSD: version.mk,v 1.3 2025/01/30 14:20:09 pho Exp $
 #
 # Included by ../../converters/hs-pandoc/Makefile
 # Included by ../../converters/pandoc/Makefile
 
-PANDOC_VERSION=        3.6.1
+PANDOC_VERSION=        3.6.2



Home | Main Index | Thread Index | Old Index