diff options
author | wiz <wiz@pkgsrc.org> | 2022-08-29 15:30:03 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2022-08-29 15:30:03 +0000 |
commit | 9b6f622e2b7ebf6530854b09fdd38d2764fc32c2 (patch) | |
tree | 2326f5ef43463a7f1f09f6d11e37a8287e1d708f /converters | |
parent | 5f704c119be6e1191ddca6529546386d7fdbc9b6 (diff) | |
download | pkgsrc-9b6f622e2b7ebf6530854b09fdd38d2764fc32c2.tar.gz |
pandoc: fix build with current pkgsrc dependencies
Diffstat (limited to 'converters')
-rw-r--r-- | converters/pandoc/distinfo | 3 | ||||
-rw-r--r-- | converters/pandoc/patches/patch-pandoc.cabal | 24 |
2 files changed, 26 insertions, 1 deletions
diff --git a/converters/pandoc/distinfo b/converters/pandoc/distinfo index 7a460e8b143..4057f453d79 100644 --- a/converters/pandoc/distinfo +++ b/converters/pandoc/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.5 2022/02/12 08:16:02 pho Exp $ +$NetBSD: distinfo,v 1.6 2022/08/29 15:30:03 wiz Exp $ BLAKE2s (pandoc-2.17.1.1.tar.gz) = e76b81abde9b9c97776d458d47024ee3cbca3dc732feb3e5e393bb0fdfe8df1b SHA512 (pandoc-2.17.1.1.tar.gz) = 1402240d094d62e071349d87d0a2ffe3e82269a80c82a39cefc7c2938ac86594011459068c1dd526127d72dd8c20816896d5c38761e9691370fa11190ec51b06 Size (pandoc-2.17.1.1.tar.gz) = 7180959 bytes +SHA1 (patch-pandoc.cabal) = 5d310ef81d9d2d8c9c06db84ac27d352fa978c2d diff --git a/converters/pandoc/patches/patch-pandoc.cabal b/converters/pandoc/patches/patch-pandoc.cabal new file mode 100644 index 00000000000..dd2fb4121d5 --- /dev/null +++ b/converters/pandoc/patches/patch-pandoc.cabal @@ -0,0 +1,24 @@ +$NetBSD: patch-pandoc.cabal,v 1.4 2022/08/29 15:30:03 wiz Exp $ + +Allow current pkgsrc dependencies. + +--- pandoc.cabal.orig 2022-01-31 19:10:53.000000000 +0000 ++++ pandoc.cabal +@@ -454,7 +454,7 @@ library + build-depends: Glob >= 0.7 && < 0.11, + JuicyPixels >= 3.1.6.1 && < 3.4, + SHA >= 1.6 && < 1.7, +- aeson >= 0.7 && < 2.1, ++ aeson >= 0.7, + aeson-pretty >= 0.8.9 && < 0.9, + array >= 0.5 && < 0.6, + attoparsec >= 0.12 && < 0.15, +@@ -481,7 +481,7 @@ library + filepath >= 1.1 && < 1.5, + haddock-library >= 1.10 && < 1.11, + hslua >= 2.1 && < 2.2, +- hslua-aeson >= 2.1 && < 2.2, ++ hslua-aeson >= 2.1, + hslua-marshalling >= 2.1 && < 2.2, + hslua-module-path >= 1.0 && < 1.1, + hslua-module-system >= 1.0 && < 1.1, |