flamingra 0.1.1 → 0.1.1.1
raw patch · 5 files changed
+35/−25 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Flamingra/Docs.hs +23/−0
- Flamingra/Pleases/Haddock.hs +0/−1
- Main.hs +1/−1
- changelog +7/−0
- flamingra.cabal +4/−23
+ Flamingra/Docs.hs view
@@ -0,0 +1,23 @@+-- |+-- It will be (kind of) interactive (e.g. <http://lelf.lu/files/pandoc.svg>).+-- .+-- <<pandoc.svg>>+-- +-- = TL;DR (and the only one available) guide:+-- +-- > some-program +RTS -P+-- > wget https://raw.githubusercontent.com/brendangregg/FlameGraph/master/flamegrph.pl+-- > flamingra some-program.prof | perl flamegraph.pl > picturesque.svg+-- +-- = Usage:+-- +-- > flamingra out.prof | …+-- +-- or+-- +-- > … | flamingra | …+-- +-- where out.prof is @-P@ profiling output.++module Flamingra.Docs where+
− Flamingra/Pleases/Haddock.hs
@@ -1,1 +0,0 @@-module Flamingra.Pleases.Haddock where
Main.hs view
@@ -7,7 +7,7 @@ import Control.Monad import Options.Applicative import System.IO-import System.Exit+import System.Exit (exitWith, ExitCode(..)) import Control.Monad.Trans.Either
+ changelog view
@@ -0,0 +1,7 @@+2015-04-19 Antonio Nikishaev <me@lelf.lu>++ * 0.1.1: Restrict deps++ * 0.1.1.1: Dear diary, FUCK haddock, I've simply moved docs to Flamingra.Docs;+ ghc-7.10.1+
flamingra.cabal view
@@ -1,27 +1,8 @@ name: flamingra-version: 0.1.1+version: 0.1.1.1 synopsis: FlameGraphs of profiling description: Hack to turn the profiling output into the format suitable for FlameGraph.- It will be (kind of) interactive (e.g. <http://lelf.lu/files/pandoc.svg>).- .- <<pandoc.svg>>- .- =TL;DR (and the only one available) guide:- .- > some-program +RTS -P- > wget https://raw.githubusercontent.com/brendangregg/FlameGraph/master/flamegraph.pl- > flamingra some-program.prof | perl flamegraph.pl > picturesque.svg- .- =Usage:- .- > flamingra out.prof | …- or- .- > … | flamingra | …- .- where out.prof is @-P@ profiling output.- license: BSD3 license-file: LICENSE author: Antonio Nikishaev@@ -29,9 +10,9 @@ -- copyright: category: Development build-type: Simple-extra-doc-files: pandoc.svg+extra-doc-files: pandoc.svg changelog cabal-version: >=1.10-tested-with: GHC==7.8.3+tested-with: GHC==7.8.3, GHC==7.10.1 source-repository head type: git@@ -55,7 +36,7 @@ default-language: Haskell2010 library- exposed-modules: Flamingra.Pleases.Haddock+ exposed-modules: Flamingra.Docs default-language: Haskell2010 build-depends: base <= 42