Skip to content

Commit

Permalink
Update from Hackage at 2020-03-04T00:23:18Z
Browse files Browse the repository at this point in the history
  • Loading branch information
all-cabal-tool committed Mar 4, 2020
1 parent a8b3b8d commit f51d4d4
Show file tree
Hide file tree
Showing 4 changed files with 181 additions and 0 deletions.
104 changes: 104 additions & 0 deletions massiv-io/0.2.1.0/massiv-io.cabal
@@ -0,0 +1,104 @@
name: massiv-io
version: 0.2.1.0
synopsis: Import/export of Image files into massiv Arrays
description: This package contains functionality for import/export of arrays
into the real world. For now it only has the ability to read/write
image files in various formats.
homepage: https://github.com/lehins/massiv-io
license: BSD3
license-file: LICENSE
author: Alexey Kuleshevich
maintainer: alexey@kuleshevi.ch
copyright: 2018-2020 Alexey Kuleshevich
category: Data, Data Structures
build-type: Custom
extra-doc-files: files/*.jpg
extra-source-files: README.md
, CHANGELOG.md
cabal-version: 1.18
custom-setup
setup-depends:
base
, Cabal
, cabal-doctest >=1.0.6

library
hs-source-dirs: src
exposed-modules: Data.Massiv.Array.IO
, Graphics.ColorModel
other-modules: Data.Massiv.Array.IO.Base
, Data.Massiv.Array.IO.Image
, Data.Massiv.Array.IO.Image.JuicyPixels
, Data.Massiv.Array.IO.Image.JuicyPixels.Base
, Data.Massiv.Array.IO.Image.JuicyPixels.BMP
, Data.Massiv.Array.IO.Image.JuicyPixels.GIF
, Data.Massiv.Array.IO.Image.JuicyPixels.HDR
, Data.Massiv.Array.IO.Image.JuicyPixels.JPG
, Data.Massiv.Array.IO.Image.JuicyPixels.PNG
, Data.Massiv.Array.IO.Image.JuicyPixels.TGA
, Data.Massiv.Array.IO.Image.JuicyPixels.TIF
, Data.Massiv.Array.IO.Image.Netpbm
build-depends: base >= 4.8 && < 5
, bytestring
, Color >= 0.1.4
, data-default-class
, deepseq
, exceptions
, filepath
, massiv >= 0.3
, JuicyPixels >= 3.3.5
, netpbm
, unliftio >= 0.2.12
, vector >= 0.10
default-language: Haskell2010
ghc-options: -Wall
if os(windows)
CPP-options: -DOS_Win32
else
if os(linux)
CPP-options: -DOS_Linux
else
if os(darwin)
CPP-options: -DOS_Mac

test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
other-modules: Test.Massiv.Array.IO.Image.Common
, Test.Massiv.Array.IO.Image.JuicyPixelsSpec
, Test.Massiv.Array.IO.Image.AutoSpec
, Spec
build-depends: JuicyPixels
, QuickCheck
, base
, bytestring
, hspec
, massiv
, massiv-io
, massiv-test
, random

default-language: Haskell2010
ghc-options: -Wall
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wredundant-constraints
-fno-warn-orphans
-threaded
-freduction-depth=0


test-suite doctests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: doctests.hs
build-depends: base
, doctest >=0.15
, QuickCheck
, template-haskell
default-language: Haskell2010

source-repository head
type: git
location: https://github.com/lehins/massiv-io
1 change: 1 addition & 0 deletions massiv-io/0.2.1.0/massiv-io.json
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"018d95ef32eb2f91a39d8362f45d82d8","Skein512_512":"22f49137fcbea114fea96c4674caa246988c7ab84c67403b03d5ec9356c3b86aee3614abbf4ee4c9e2b0bfd49ed59ec0302815a440e07c376b7d6f95898595b6","SHA1":"b9f63721e41de895859d7b0e72f4a47e8c7eb3e2","SHA512":"2bbdaa7db2dab81f4cf4b2c74ae13e961223996c1ced6253f2331580831dae156b635c72ab63cbdcb843f65a1da9869ed7115504e4d61e040afe45d355585be9","SHA256":"267af24eba1456092d862f1b9f3fc9dbe65a2244a1257d02c5346d07a625ff5c"},"package-locations":["https://hackage.haskell.org/package/massiv-io-0.2.1.0/massiv-io-0.2.1.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/massiv-io-0.2.1.0.tar.gz"],"package-size":233113}
75 changes: 75 additions & 0 deletions sdl2-ttf/2.1.1/sdl2-ttf.cabal
@@ -0,0 +1,75 @@
name: sdl2-ttf
version: 2.1.1
synopsis: Bindings to SDL2_ttf.
description: Haskell bindings to SDL2_ttf C++ library <http://www.libsdl.org/projects/SDL_ttf/>.
bug-reports: https://github.com/haskell-game/sdl2-ttf/issues
license: BSD3
license-file: LICENSE
maintainer: Mikolaj Konarski <mikolaj.konarski@funktory.com>
author: Rongcui Dong (rongcuid@outlook.com),
Siniša Biđin <sinisa@bidin.eu>,
Ömer Sinan Ağacan (omeragacan@gmail.com),
Sean Chalmers (sclhiannan@gmail.com)
copyright: Copyright © 2013-2017 Ömer Sinan Ağacan, Siniša Biđin, Rongcui Dong
category: Font, Foreign binding, Graphics
build-type: Simple
cabal-version: >=1.10
tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.2, GHC==8.6.5, GHC==8.8.3

source-repository head
type: git
location: https://github.com/haskell-game/sdl2-ttf

library
ghc-options: -Wall

exposed-modules:
SDL.Font,
SDL.Raw.Font

other-modules:
SDL.Raw.Helper

hs-source-dirs:
src

pkgconfig-depends:
sdl2 >= 2.0.3,
SDL2_ttf >= 2.0.12

c-sources:
cbits/helpers.c

build-depends:
base >= 4.8 && < 5,
bytestring >= 0.10.4.0,
sdl2 >= 2.2,
template-haskell,
text >= 1.1.0.0,
transformers >= 0.4

default-language:
Haskell2010

if os(windows)
cpp-options: -D_SDL_main_h -DSDL_main_h_

flag example
description: Build the example executable
default: False

executable sdl2-ttf-example
ghc-options: -Wall
hs-source-dirs: example
main-is: Example.hs
default-language: Haskell2010

if flag(example)
build-depends:
base,
bytestring,
sdl2,
sdl2-ttf,
text
else
buildable: False
1 change: 1 addition & 0 deletions sdl2-ttf/2.1.1/sdl2-ttf.json
@@ -0,0 +1 @@
{"package-hashes":{"MD5":"5cc0324a7458b1b66744ad8cb886aa1b","Skein512_512":"5e0e1be84ced674ceab2ed2cc2d608b66097e8083c43356454d2301bcb30ee5fd9a5d33b94ad8120a06aecf08dc10da21ca003e9897b98f367a347f8737393e8","SHA1":"2089709404cbe04443a823970cfdaae12c1a2929","SHA512":"b89edf1ce83dfe735179b5f74d8304845aacaa7cad529a47c620745436f524c69424d12794d7f5c4422340ed88e73712cdb0a31a063d9314607b48f92270e08e","SHA256":"160f4efd65666d660bba53140d759c4d734cd5cba9e4fd104944a25962a8d8c7"},"package-locations":["https://hackage.haskell.org/package/sdl2-ttf-2.1.1/sdl2-ttf-2.1.1.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/sdl2-ttf-2.1.1.tar.gz"],"package-size":11520}

0 comments on commit f51d4d4

Please sign in to comment.