llvm-general-pure 3.4.5.3 → 3.4.5.4
raw patch · 3 files changed
+17/−5 lines, 3 filesdep ~llvm-general-purePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: llvm-general-pure
API changes (from Hackage documentation)
Files
- LICENSE +1/−1
- llvm-general-pure.cabal +5/−4
- test/LLVM/General/Test/Tests.hs +11/−0
LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2013, Benjamin S. Scarlet+Copyright (c) 2013, Benjamin S. Scarlet and Google Inc. All rights reserved. Redistribution and use in source and binary forms, with or without
llvm-general-pure.cabal view
@@ -1,10 +1,10 @@ name: llvm-general-pure-version: 3.4.5.3+version: 3.4.5.4 license: BSD3 license-file: LICENSE author: Benjamin S.Scarlet <fgthb0@greynode.net> maintainer: Benjamin S. Scarlet <fgthb0@greynode.net>-copyright: Benjamin S. Scarlet 2013+copyright: (c) 2013 Benjamin S. Scarlet and Google Inc. build-type: Simple stability: experimental cabal-version: >= 1.8@@ -25,7 +25,7 @@ type: git location: git://github.com/bscarlet/llvm-general.git branch: llvm-3.4- tag: pure-v3.4.5.3+ tag: pure-v3.4.5.4 library ghc-options: -fwarn-unused-imports@@ -84,7 +84,7 @@ HUnit >= 1.2.4.2, test-framework-quickcheck2 >= 0.3.0.1, QuickCheck >= 2.5.1.1,- llvm-general-pure == 3.4.5.3,+ llvm-general-pure == 3.4.5.4, containers >= 0.4.2.1, mtl >= 2.1.3 hs-source-dirs: test@@ -96,3 +96,4 @@ other-modules: LLVM.General.Test.DataLayout LLVM.General.Test.PrettyPrint+ LLVM.General.Test.Tests
+ test/LLVM/General/Test/Tests.hs view
@@ -0,0 +1,11 @@+module LLVM.General.Test.Tests where++import Test.Framework++import qualified LLVM.General.Test.DataLayout as DataLayout+import qualified LLVM.General.Test.PrettyPrint as PrettyPrint++tests = testGroup "llvm-general" [+ DataLayout.tests,+ PrettyPrint.tests+ ]