Skip to content

Commits on Source 2

haskell-hsh (2.1.2-9) UNRELEASED; urgency=medium
haskell-hsh (2.1.3-1) unstable; urgency=medium
* Set Rules-Requires-Root to no.
* New upstream release
-- Clint Adams <clint@debian.org> Sun, 06 May 2018 22:09:52 -0400
-- Clint Adams <clint@debian.org> Tue, 03 Jul 2018 22:32:39 -0400
haskell-hsh (2.1.2-8) unstable; urgency=medium
......
--- a/HSH/ShellEquivs.hs
+++ b/HSH/ShellEquivs.hs
@@ -86,7 +86,7 @@
import Text.Regex (matchRegex, mkRegex)
import Text.Printf (printf)
import Control.Monad (foldM)
-import System.Directory hiding (createDirectory)
+import System.Directory hiding (createDirectory, isSymbolicLink)
import qualified Control.Exception as E
-- import System.FilePath (splitPath)
Description: Update for fields added in newer versions of process
Author: Ilias Tsitsimpis <i.tsitsimpis@gmail.com>
Bug-Debian: https://bugs.debian.org/847158
Forwarded: https://github.com/jgoerzen/hsh/pull/16
Index: b/HSH/Command.hs
===================================================================
--- a/HSH/Command.hs
+++ b/HSH/Command.hs
@@ -301,6 +301,15 @@ genericCommand c environ (ChanHandle ih)
#if MIN_VERSION_process(1,2,0)
, delegate_ctlc = False
#endif
+#if MIN_VERSION_process(1,3,0)
+ , detach_console = False
+ , create_new_console = False
+ , new_session = False
+#endif
+#if MIN_VERSION_process(1,4,0)
+ , child_group = Nothing
+ , child_user = Nothing
+#endif
}
in do (_, oh', _, ph) <- createProcess cp
let oh = fromJust oh'
@@ -320,6 +329,15 @@ genericCommand cspec environ ichan =
#if MIN_VERSION_process(1,2,0)
, delegate_ctlc = False
#endif
+#if MIN_VERSION_process(1,3,0)
+ , detach_console = False
+ , create_new_console = False
+ , new_session = False
+#endif
+#if MIN_VERSION_process(1,4,0)
+ , child_group = Nothing
+ , child_user = Nothing
+#endif
}
in do (ih', oh', _, ph) <- createProcess cp
let ih = fromJust ih'
haskell-hsini (0.5.1.1-2) UNRELEASED; urgency=medium
haskell-hsini (0.5.1.2-1) unstable; urgency=medium
* Set Rules-Requires-Root to no.
* New upstream release
-- Clint Adams <clint@debian.org> Sun, 06 May 2018 22:09:52 -0400
-- Clint Adams <clint@debian.org> Tue, 03 Jul 2018 22:32:45 -0400
haskell-hsini (0.5.1.1-1) unstable; urgency=medium
......
......@@ -9,16 +9,10 @@ Build-Depends: debhelper (>= 10),
cdbs,
ghc,
ghc-prof,
libghc-mtl-dev (>= 2.2),
libghc-mtl-dev (<< 2.3),
libghc-mtl-prof,
libghc-parsec3-dev (>= 3.1),
libghc-parsec3-dev (<< 3.2),
libghc-parsec3-prof,
libghc-hunit-dev,
libghc-quickcheck2-dev,
libghc-mtl-dev,
libghc-mtl-prof,
libghc-parsec3-dev,
libghc-parsec3-prof,
libghc-tasty-dev,
libghc-tasty-hunit-dev,
libghc-tasty-quickcheck-dev,
......