Commit 2b7d0394 authored by Clint Adams's avatar Clint Adams
Browse files

tldr: Upgrading from 0.2.3 to 0.3.0

parent c4629f24
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
haskell-tldr (0.3.0-1) unstable; urgency=medium

  * New upstream release

 -- Clint Adams <clint@debian.org>  Fri, 13 Apr 2018 08:41:20 -0400

haskell-tldr (0.2.3-4) unstable; urgency=medium

  * Bump to Standards-Version 4.1.4.
+1 −1
Original line number Diff line number Diff line
9
10
+2 −2
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ Maintainer: Debian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.or
Uploaders: Clint Adams <clint@debian.org>
Priority: optional
Section: haskell
Build-Depends: debhelper (>= 9),
Build-Depends: debhelper (>= 10),
 haskell-devscripts-minimal | haskell-devscripts (>= 0.8),
 cdbs,
 dh-exec,
@@ -18,7 +18,7 @@ Build-Depends: debhelper (>= 9),
 libghc-text-prof,
 libghc-optparse-applicative-dev,
 libghc-semigroups-dev,
 libghc-shell-conduit-dev (>> 4.6.1-1),
 libghc-typed-process-dev,
Build-Depends-Indep: ghc-doc,
 libghc-ansi-terminal-doc,
 libghc-cmark-doc,
+5 −5
Original line number Diff line number Diff line
--- haskell-tldr-0.2.3.orig/tldr.cabal
+++ haskell-tldr-0.2.3/tldr.cabal
@@ -26,7 +26,7 @@ library
 executable tldr
--- a/tldr.cabal
+++ b/tldr.cabal
@@ -27,7 +27,7 @@
   hs-source-dirs:      app
   main-is:             Main.hs
   other-modules:       Paths_tldr
-  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
+  ghc-options:         -threaded -rtsopts
   build-depends:       base
                      , tldr
                      , optparse-applicative
@@ -42,7 +42,7 @@ test-suite tldr-test
@@ -43,7 +43,7 @@
   main-is:             Spec.hs
   build-depends:       base
                      , tldr
+0 −12
Original line number Diff line number Diff line
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -97,8 +97,8 @@
 
 main :: IO ()
 main = do
-  initializeTldrPages
   args <- getArgs
+  when (args /= ["--version"] && args /= ["--help"]) initializeTldrPages
   case execParserPure (prefs noBacktrack) tldrParserInfo args of
     Failure _
       | null args -> withArgs ["--help"] (execParser tldrParserInfo) >> return ()
Loading