Skip to content

Commit

Permalink
Allow filepath-1.5 in a few packages (#850)
Browse files Browse the repository at this point in the history
* fs-api: allow filepath-1.5

This has already been allowed on upstream `main` in
input-output-hk/fs-sim#75

* latex-svg-image: allow filepath-1.5

This has already been allowed in the IOG fork in
jasagredo/latex-svg#1
  • Loading branch information
amesgen authored Jul 25, 2024
1 parent b2dc629 commit cc492f7
Show file tree
Hide file tree
Showing 4 changed files with 128 additions and 0 deletions.
4 changes: 4 additions & 0 deletions _sources/fs-api/0.2.0.1/meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
68 changes: 68 additions & 0 deletions _sources/fs-api/0.2.0.1/revisions/4.cabal
Original file line number Diff line number Diff line change
@@ -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: [email protected]
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
4 changes: 4 additions & 0 deletions _sources/latex-svg-image/0.2.0.0.0.1/meta.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
52 changes: 52 additions & 0 deletions _sources/latex-svg-image/0.2.0.0.0.1/revisions/2.cabal
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
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

0 comments on commit cc492f7

Please sign in to comment.