packages feed

diagrams 1.1.0.1 → 1.2

raw patch · 2 files changed

+25/−10 lines, 2 filesdep +diagrams-rasterificdep ~diagrams-cairodep ~diagrams-coredep ~diagrams-lib

Dependencies added: diagrams-rasterific

Dependency ranges changed: diagrams-cairo, diagrams-core, diagrams-lib, diagrams-postscript, diagrams-svg

Files

LICENSE view
@@ -1,7 +1,7 @@ Copyright (c) 2011-2014, diagrams team (see LICENSE files in dual-tree, monoid-extras, diagrams-core, diagrams-lib, diagrams-svg,-diagrams-postscript, diagrams-cairo, diagrams-gtk, and-diagrams-contrib packages)+diagrams-postscript, diagrams-cairo, diagrams-gtk, diagrams-rasterific, +and diagrams-contrib packages)  All rights reserved. 
diagrams.cabal view
@@ -1,5 +1,5 @@ Name:                diagrams-Version:             1.1.0.1+Version:             1.2 Synopsis:            Embedded domain-specific language for declarative vector graphics Description:         Diagrams is a full-featured framework and embedded domain-specific langauge for creating                      declarative vector graphics and animations.@@ -28,7 +28,8 @@                      There is also a cairo backend (the                      @diagrams-cairo@ package) which can be selected                      with the @-fcairo@ flag. It is fully-featured and-                     can produce PNG, PS, PDF, or SVG output; however,+                     can produce PNG, PS, PDF, SVG, or animated+                     GIF output; however,                      due to its dependencies it can be difficult to                      install on some platforms (notably OS X).                      .@@ -36,11 +37,17 @@                      cairo backend, for rendering diagrams directly to                      GTK windows. You can enable it with the @-fgtk@ flag.                      .-                     Finally, there is a Haskell-native postscript+                     The Haskell-native postscript                      backend (the @diagrams-postscript@ package) which                      can be selected with the @-fps@ flag.  The only                      feature it does not support is transparency.                      .+                     Finally there is a Rasterific backend which is+                     also Haskell-native (the @diagrams-rasterific@+                     package) which can be selected with the @-frasterific@+                     flag. This is a fully featured backend with the ability+                     to produce PNG, JPG, TIFF, BMP and animated GIF output.+                     .                      For more information, including a gallery of                      examples, tutorial, and user manual, see the                      diagrams website:@@ -84,21 +91,29 @@   Default: False   Manual: True +Flag rasterific+  Description: Enable the Haskell-native Rasterific backend+  Default: False+  Manual: True+ Library-  Build-depends:     diagrams-core >= 1.1 && < 1.2,-                     diagrams-lib >= 1.1 && < 1.2,+  Build-depends:     diagrams-core >= 1.2 && < 1.3,+                     diagrams-lib >= 1.2 && < 1.3,                      diagrams-contrib >= 1.0 && < 1.2    if flag(cairo)-    Build-depends:   diagrams-cairo >= 1.1 && < 1.2+    Build-depends:   diagrams-cairo >= 1.2 && < 1.3    if flag(gtk)     Build-depends:   diagrams-gtk >= 1.0.1 && < 1.1    if flag(svg)-    Build-depends:   diagrams-svg >= 1.0.1.4 && < 1.1+    Build-depends:   diagrams-svg >= 1.0.1.4 && < 1.2    if flag(ps)-    Build-depends:   diagrams-postscript >= 1.0.2 && < 1.1+    Build-depends:   diagrams-postscript >= 1.0.2 && < 1.2++  if flag(rasterific)+    Build-depends:   diagrams-rasterific >= 0.1 && < 0.2    Default-language:  Haskell2010