[Pkg-haskell-commits] darcs: tools: Ignore non-migrated source packages in haskell-pkg-debcheck.hs

Joachim Breitner mail at joachim-breitner.de
Tue Apr 5 17:27:17 UTC 2011


Tue Apr  5 17:26:48 UTC 2011  Joachim Breitner <mail at joachim-breitner.de>
  * Ignore non-migrated source packages in haskell-pkg-debcheck.hs
  Ignore-this: 1b3a58f2bfab7055c7c8a5af48b8b452

    M ./haskell-pkg-debcheck.hs -1 +2

Tue Apr  5 17:26:48 UTC 2011  Joachim Breitner <mail at joachim-breitner.de>
  * Ignore non-migrated source packages in haskell-pkg-debcheck.hs
  Ignore-this: 1b3a58f2bfab7055c7c8a5af48b8b452
diff -rN -u old-tools/haskell-pkg-debcheck.hs new-tools/haskell-pkg-debcheck.hs
--- old-tools/haskell-pkg-debcheck.hs	2011-04-05 17:27:16.187118553 +0000
+++ new-tools/haskell-pkg-debcheck.hs	2011-04-05 17:27:16.187118553 +0000
@@ -157,7 +157,8 @@
             -}
             when f $ putStrLn $ "dw " ++ s ++ "_" ++ show sv ++ " . " ++ unwords (S.toList as) ++ " . -m '" ++ showRelations dws ++ "'"
 
-interestingSource si = "haskell-devscripts" `elem` (flattenRelations (siBuildDepends si))
+interestingSource si = "haskell-devscripts" `elem` (flattenRelations (siBuildDepends si)) &&
+                       "ghc6" `notElem` (flattenRelations (siBuildDepends si)) 
 
 mergeArches n1@(as1, v1, x1) n2@(as2, v2, x2)
     | v1 == v2 = (as1 `S.union` as2, v1, x1)





More information about the Pkg-haskell-commits mailing list