squeeze 1.0.2.2 → 1.0.2.3
raw patch · 6 files changed
+7/−5 lines, 6 files
Files
- changelog +2/−0
- debian/DEBIAN/control +1/−1
- squeeze.cabal +1/−1
- squeeze.spec +1/−1
- src/Main.hs +1/−1
- src/Squeeze/Test/Performance.hs +1/−1
changelog view
@@ -57,3 +57,5 @@ * Replaced use of 'Control.Exception.bracket' with 'System.IO.withFile', in 'Squeeze.Data.File.findSize'. * Replaced "System" with "System.Environment" and "System.Exit". * Removed dependency on "haskell98".+1.0.2.3+ * Added class 'Show' to context for 'Squeeze.Test.Performance.run', for migration to 'ghc-7.4.1'.
debian/DEBIAN/control view
@@ -1,5 +1,5 @@ Package: squeeze-Version: 1.0.2.2-1+Version: 1.0.2.3-1 Section: utils Priority: optional Architecture: i386
squeeze.cabal view
@@ -1,6 +1,6 @@ --Package-properties Name: squeeze-Version: 1.0.2.2+Version: 1.0.2.3 Cabal-Version: >= 1.6 Copyright: (C) 2010 Dr. Alistair Ward License: GPL
squeeze.spec view
@@ -7,7 +7,7 @@ Summary: Finds the optimal subset of the specified files, to fit into a limited space, with minimal wastage. Name: squeeze-Version: 1.0.2.2+Version: 1.0.2.3 Release: 1 License: GPLv3 #From '/usr/share/doc/packages/rpm/GROUPS'.
src/Main.hs view
@@ -133,7 +133,7 @@ probabilityDistribution :: Factory.Math.Probability.DiscreteDistribution Double probabilityDistribution = read arg - runQuickChecks :: (Num f, Ord f) => Data.CommandOptions.CommandOptions f -> IO (Data.CommandOptions.CommandOptions f)+ runQuickChecks :: (Num f, Ord f, Show f) => Data.CommandOptions.CommandOptions f -> IO (Data.CommandOptions.CommandOptions f) runQuickChecks commandOptions = if not $ ToolShed.SelfValidate.isValid commandOptions then error $ ToolShed.SelfValidate.getFirstError commandOptions else do
src/Squeeze/Test/Performance.hs view
@@ -40,7 +40,7 @@ * The generated file-name, arbitrarily reflects its size. -}-run :: (RealFrac ratio, RealFloat f, System.Random.Random f)+run :: (RealFrac ratio, RealFloat f, Show f, System.Random.Random f) => Data.CommandOptions.CommandOptions ratio -> Int -- ^ The number of /virtual/ files to randomly generate. -> Factory.Math.Probability.DiscreteDistribution f