From cc492f7c012c2e6f20ea03b6f4e98c8544c26e7b Mon Sep 17 00:00:00 2001 From: amesgen Date: Thu, 25 Jul 2024 15:42:02 +0200 Subject: [PATCH] Allow filepath-1.5 in a few packages (#850) * fs-api: allow filepath-1.5 This has already been allowed on upstream `main` in https://github.com/input-output-hk/fs-sim/pull/75 * latex-svg-image: allow filepath-1.5 This has already been allowed in the IOG fork in https://github.com/jasagredo/latex-svg/pull/1 --- _sources/fs-api/0.2.0.1/meta.toml | 4 ++ _sources/fs-api/0.2.0.1/revisions/4.cabal | 68 +++++++++++++++++++ .../latex-svg-image/0.2.0.0.0.1/meta.toml | 4 ++ .../0.2.0.0.0.1/revisions/2.cabal | 52 ++++++++++++++ 4 files changed, 128 insertions(+) create mode 100644 _sources/fs-api/0.2.0.1/revisions/4.cabal create mode 100644 _sources/latex-svg-image/0.2.0.0.0.1/revisions/2.cabal diff --git a/_sources/fs-api/0.2.0.1/meta.toml b/_sources/fs-api/0.2.0.1/meta.toml index 31f1c60bc..a5d5606ab 100644 --- a/_sources/fs-api/0.2.0.1/meta.toml +++ b/_sources/fs-api/0.2.0.1/meta.toml @@ -13,3 +13,7 @@ timestamp = 2024-06-06T15:27:49Z [[revisions]] number = 3 timestamp = 2024-07-15T00:43:41Z + +[[revisions]] +number = 4 +timestamp = 2024-07-25T13:19:14Z diff --git a/_sources/fs-api/0.2.0.1/revisions/4.cabal b/_sources/fs-api/0.2.0.1/revisions/4.cabal new file mode 100644 index 000000000..e4aa47708 --- /dev/null +++ b/_sources/fs-api/0.2.0.1/revisions/4.cabal @@ -0,0 +1,68 @@ +cabal-version: 3.0 +name: fs-api +version: 0.2.0.1 +synopsis: API for file systems +description: API for file systems. +license: Apache-2.0 +license-files: + LICENSE + NOTICE + +copyright: 2019-2023 Input Output Global Inc (IOG) +author: IOG Engineering Team +maintainer: operations@iohk.io +category: System +build-type: Simple +extra-doc-files: CHANGELOG.md +tested-with: GHC ==8.10 || ==9.2 || ==9.4 || ==9.6 + +source-repository head + type: git + location: https://github.com/input-output-hk/fs-sim + subdir: fs-api + +library + hs-source-dirs: src + + if os(windows) + hs-source-dirs: src-win32 + + else + hs-source-dirs: src-unix + + exposed-modules: + System.FS.API + System.FS.API.Lazy + System.FS.API.Strict + System.FS.API.Types + System.FS.CRC + System.FS.IO + System.FS.IO.Internal + System.FS.IO.Internal.Handle + Util.CallStack + Util.Condense + + default-language: Haskell2010 + build-depends: + , base >=4.14 && <4.21 + , bytestring >=0.10 && <0.13 + , containers >=0.5 && <0.8 + , deepseq + , digest + , directory >=1.3 && <1.4 + , filepath >=1.4 && <1.6 + , io-classes >=0.3 && <1.6 + , text >=1.2 && <2.2 + + if os(windows) + build-depends: Win32 >=2.6.1.0 + + else + build-depends: + , unix + , unix-bytestring >=0.4.0 + + ghc-options: + -Wall -Wcompat -Wincomplete-uni-patterns + -Wincomplete-record-updates -Wpartial-fields -Widentities + -Wredundant-constraints -Wmissing-export-lists -Wunused-packages diff --git a/_sources/latex-svg-image/0.2.0.0.0.1/meta.toml b/_sources/latex-svg-image/0.2.0.0.0.1/meta.toml index 6ffba9eba..b3d6d6841 100644 --- a/_sources/latex-svg-image/0.2.0.0.0.1/meta.toml +++ b/_sources/latex-svg-image/0.2.0.0.0.1/meta.toml @@ -6,3 +6,7 @@ force-version = true [[revisions]] number = 1 timestamp = 2024-07-24T06:25:44Z + +[[revisions]] +number = 2 +timestamp = 2024-07-25T13:19:14Z diff --git a/_sources/latex-svg-image/0.2.0.0.0.1/revisions/2.cabal b/_sources/latex-svg-image/0.2.0.0.0.1/revisions/2.cabal new file mode 100644 index 000000000..f1c8141b4 --- /dev/null +++ b/_sources/latex-svg-image/0.2.0.0.0.1/revisions/2.cabal @@ -0,0 +1,52 @@ +cabal-version: 2.2 +name: latex-svg-image +version: 0.2.0.0.0.1 +license: BSD-3-Clause +license-file: LICENSE +copyright: 2020 Oleg Grenrus, 2015-2019 Liam O'Connor +maintainer: Oleg Grenrus +author: Oleg Grenrus, Liam O'Connor +tested-with: ghc ==8.10.7 || ==9.6.4 || ==9.8.1 +homepage: http://github.com/phadej/latex-svg#readme +synopsis: + A library for rendering LaTeX formulae as SVG using an actual LaTeX + +description: + This library provides the basic infrastructure necessary to convert LaTeX + formulae into SVG images, using a real LaTeX installation. This is useful in + particular for showing formulae on websites, where using alternatives like + MathJax is not an option (e.g, when you want to use various LaTeX packages that + MathJax doesn't support). + . + This library requires @latex@, @dvisvgm@ to be present in the system. + . + The companion library to this, @latex-svg-pandoc@, provides useful tools to + integrate this library with pandoc, when generating HTML documents. + . + This is a fork of https://github.com/liamoc/latex-formulae + +category: Image +build-type: Simple + +source-repository head + type: git + location: https://github.com/phadej/latex-svg + subdir: latex-svg-image + +library + exposed-modules: Image.LaTeX.Render + hs-source-dirs: src + default-language: Haskell2010 + ghc-options: -Wall + build-depends: + base >=4.14.3 && <4.21, + deepseq >=1.4.4 && <1.6, + directory ^>=1.3.6, + filepath >=1.4.2.1 && <1.6, + parsec ^>=3.1.14, + process ^>=1.6.13.2, + temporary ^>=1.3, + transformers >=0.5.6.2 && <1.7, + base64-bytestring ^>=1.2.1, + bytestring >=0.10.12 && <0.13, + cryptohash-sha256 ^>=0.11.102.1