[Pkg-haskell-commits] darcs: darcs: Historic import 1.0.8-1.

Isaac Jones ijones at debian.org
Sat Mar 6 11:45:16 UTC 2010


Sun Jul  2 22:37:49 UTC 2006  Isaac Jones <ijones at debian.org>
  * Historic import 1.0.8-1.
  Ignore-this: 6a75f955006a40eb2a5f6d006fa7ba57

     ./patches/debian-changes-1.0.6-1 -> ./patches/debian-changes-1.0.8-1
    M ./changelog +10
    M ./darcs.docs -1 +1
    M ./patches/debian-changes-1.0.8-1 -443 +494
    M ./patches/series -1 +1

Sun Jul  2 22:37:49 UTC 2006  Isaac Jones <ijones at debian.org>
  * Historic import 1.0.8-1.
  Ignore-this: 6a75f955006a40eb2a5f6d006fa7ba57
diff -rN -u old-darcs/changelog new-darcs/changelog
--- old-darcs/changelog	2010-03-06 11:45:15.817452004 +0000
+++ new-darcs/changelog	2010-03-06 11:45:16.277476414 +0000
@@ -1,3 +1,13 @@
+darcs (1.0.8-1) unstable; urgency=low
+
+  * New upstream release (Closes: #375353).
+  * Updated upstream ChangeLog name (Closes: #365043).
+  * I believe emtpy documentation problem is fixed (looks fixed).  Please reopen if not (Closes: #362508).
+  * Compiled with newer version of GHC without certain bug (version 6.4.2) (Closes: #375802).
+  * ssh session-related patch is now in upstream (Closes: #366719).
+
+ -- Isaac Jones <ijones at debian.org>  Sun,  2 Jul 2006 15:37:49 -0700
+
 darcs (1.0.6-1) unstable; urgency=low
 
   * New upstream release
diff -rN -u old-darcs/darcs.docs new-darcs/darcs.docs
--- old-darcs/darcs.docs	2010-03-06 11:45:15.817452004 +0000
+++ new-darcs/darcs.docs	2010-03-06 11:45:16.277476414 +0000
@@ -1 +1 @@
-changelog
+ChangeLog
diff -rN -u old-darcs/patches/debian-changes-1.0.6-1 new-darcs/patches/debian-changes-1.0.6-1
--- old-darcs/patches/debian-changes-1.0.6-1	2010-03-06 11:45:15.813451792 +0000
+++ new-darcs/patches/debian-changes-1.0.6-1	1970-01-01 00:00:00.000000000 +0000
@@ -1,15403 +0,0 @@
---- darcs-1.0.6.orig/DarcsArguments.lhs
-+++ darcs-1.0.6/DarcsArguments.lhs
-@@ -867,6 +867,7 @@ edit_file :: String -> IO ExitCode
- edit_file f = do
-   ed <- get_editor
-   exec_interactive ed [f]
-+             `ortryrunning` exec_interactive "vi" [f]
-              `ortryrunning` exec_interactive "emacs" [f]
-              `ortryrunning` exec_interactive "emacs" ["-nw",f]
-              `ortryrunning` exec_interactive "nano" [f]
-@@ -874,7 +875,7 @@ get_editor :: IO String
- get_editor = getEnv "DARCS_EDITOR" `catchall`
-              getEnv "DARCSEDITOR" `catchall`
-              getEnv "VISUAL" `catchall`
--             getEnv "EDITOR" `catchall` return "vi"
-+             getEnv "EDITOR" `catchall` return "sensible-editor"
- \end{code}
- 
- \begin{code}
-@@ -882,10 +883,11 @@ view_file :: String -> IO ExitCode
- view_file f = do
-   viewer <- get_viewer
-   exec_interactive viewer [f]
-+             `ortryrunning` exec_interactive "less" [f]
-              `ortryrunning` exec_interactive "more" [f]
- get_viewer :: IO String
- get_viewer = getEnv "DARCS_PAGER" `catchall`
--             getEnv "PAGER" `catchall` return "less"
-+             getEnv "PAGER" `catchall` return "pager"
- \end{code}
- 
- \begin{code}
---- darcs-1.0.6.orig/GNUmakefile
-+++ darcs-1.0.6/GNUmakefile
-@@ -200,7 +200,7 @@ website: darcs-stable.tar.gz darcs.ps ma
- 	index.html
- 
- manual/index.html: darcs.tex gpl.tex darcs.css
--	$(MAKEMANUAL)
-+	TEX4HTENV=/etc/tex4ht/tex4ht.env $(MAKEMANUAL)
- 	cp -f darcs.css manual/darcs.css
- 
- manual/bigpage.html: darcs.tex gpl.tex darcs.css
---- darcs-1.0.6.orig/darcs.css
-+++ darcs-1.0.6/darcs.css
-@@ -1,82 +1,231 @@
--BODY {
--  background: white;
--  color: black;
--  font-family: arial,sans-serif;
--  margin: 0;
--  padding: 1em;
--}
--
--A:link {
--  background: transparent;
--  color: #494a82;
--}
--
--A:visited {
--  background: transparent;
--  color: #8081b3
--}
--
--PRE     {
--  background: #eeeeee;
--  border: 1px solid #888888;
--  color: black;
--  padding: 1em;
--  white-space: pre;
--}
--
--H1      {
--  color: #494a82;
--  font-size: 24px ;
--}
--
--H2      {
--  color: #494a82;
--  font-size: 18px;
--}
--
--H3      {
--  color: #494a82;
--  font-size: 16px;
--}
--
--H4      {
--  color: #494a82;
--  font-size: 14px;
--}
--
--/* headers for darcs command options */
--.cmd-opt-hdr     {
--  color: #494a82;
--  font-size: 14px;
--  font-weight: bold;
--}
--
--/* begin styles for RSS Feed This is the most basic style to use for a list with no bullets */
--
--.rss_title, rss_title a {
--    margin: 0px 0;
--    padding: 0;
--}
--
--.rss_items {
--       list-style:none;
--       margin:0;
--       padding:0;
--}
--
--.rss_item  {
--/*  font-size: x-small; */
--  margin-bottom: 1em;;
--}
--
--.rss_item a:link, .rss_item a:visited, .rss_item a:active {
--
--    }
--
--.rss_item a:hover { 
--
--    }
--    
--.rss_date {
--    font-size: xx-small;
--    }
-+ 
-+/* start css.sty */
-+.cmr-7{font-size:70%;}
-+.cmmi-10{font-style: italic;}
-+.cmsy-7{font-size:70%;}
-+.cmr-17{font-size:170%;}
-+.cmti-12x-x-120{font-size:144%; font-style: italic;}
-+.cmr-12{font-size:120%;}
-+.cmr-8{font-size:80%;}
-+.cmr-6{font-size:60%;}
-+.cmmi-8{font-size:80%;font-style: italic;}
-+.cmtt-10{font-family: monospace;}
-+.cmbx-10{ font-weight: bold;}
-+.cmti-10{ font-style: italic;}
-+.cmtt-8{font-size:80%;font-family: monospace;}
-+.cmti-8{font-size:80%; font-style: italic;}
-+.cmcsc-10x-x-144{font-size:144%;}
-+.small-caps{font-variant: small-caps; }
-+p.noindent { text-indent: 0em }
-+p.nopar { text-indent: 0em; }
-+p.indent{ text-indent: 1.5em }
-+ at media print {div.crosslinks {visibility:hidden;}}
-+a img { border-top: 0; border-left: 0; border-right: 0; }
-+center { margin-top:1em; margin-bottom:1em; }
-+td center { margin-top:0em; margin-bottom:0em; }
-+.Canvas { position:relative; }
-+img.math{vertical-align:middle;}
-+li p.indent { text-indent: 0em }
-+.enumerate1 {list-style-type:decimal;}
-+.enumerate2 {list-style-type:lower-alpha;}
-+.enumerate3 {list-style-type:lower-roman;}
-+.enumerate4 {list-style-type:upper-alpha;}
-+div.newtheorem { margin-bottom: 2em; margin-top: 2em;}
-+.obeylines-h,.obeylines-v {white-space: nowrap; }
-+div.obeylines-v p { margin-top:0; margin-bottom:0; }
-+.overline{ text-decoration:overline; }
-+.overline img{ border-top: 1px solid black; }
-+td.displaylines {text-align:center; white-space:nowrap;}
-+.centerline {text-align:center;}
-+.rightline {text-align:right;}
-+div.verbatim {font-family: monospace; white-space: nowrap; }
-+.fbox {padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; }
-+div.center div.fbox {text-align:center; clear:both; padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; }
-+table.minipage{width:100%;}
-+div.center, div.center div.center {text-align: center; margin-left:1em; margin-right:1em;}
-+div.center div {text-align: left;}
-+div.flushright, div.flushright div.flushright {text-align: right;}
-+div.flushright div {text-align: left;}
-+div.flushleft {text-align: left;}
-+.underline{ text-decoration:underline; }
-+.underline img{ border-bottom: 1px solid black; margin-bottom:1pt; }
-+.framebox-c, .framebox-l, .framebox-r { padding-left:3.0pt; padding-right:3.0pt; text-indent:0pt; border:solid black 0.4pt; }
-+.framebox-c {text-align:center;}
-+.framebox-l {text-align:left;}
-+.framebox-r {text-align:right;}
-+span.thank-mark{ vertical-align: super }
-+div.tabular, div.center div.tabular {text-align: center; margin-top:0.5em; margin-bottom:0.5em; }
-+table.tabular td p{margin-top:0em;}
-+table.tabular {margin-left: auto; margin-right: auto;}
-+div.td00{ margin-left:0pt; margin-right:0pt; }
-+div.td01{ margin-left:0pt; margin-right:5pt; }
-+div.td10{ margin-left:5pt; margin-right:0pt; }
-+div.td11{ margin-left:5pt; margin-right:5pt; }
-+td.td00{ padding-left:0pt; padding-right:0pt; }
-+td.td01{ padding-left:0pt; padding-right:5pt; }
-+td.td10{ padding-left:5pt; padding-right:0pt; }
-+td.td11{ padding-left:5pt; padding-right:5pt; }
-+.hline hr, .cline hr{ height : 1px; margin:0px; }
-+.tabbing-right {text-align:right;}
-+span.TEX {letter-spacing: -0.125em; }
-+span.TEX span.E{ position:relative;top:0.5ex;left:-0.0417em;}
-+a span.TEX span.E {text-decoration: none; }
-+span.LATEX span.A{ position:relative; top:-0.5ex; left:-0.4em; font-size:85%;}
-+span.LATEX span.TEX{ position:relative; left: -0.4em; }
-+div.float img, div.float .caption {text-align:center;}
-+div.figure img, div.figure .caption {text-align:center;}
-+.marginpar {width:20%; float:right; text-align:left; margin-left:auto; margin-top:0.5em; font-size:85%; text-decoration:underline;}
-+.marginpar p{margin-top:0.4em; margin-bottom:0.4em;}
-+.equation td{text-align:center; }
-+td.equation { margin-top:1em; margin-bottom:1em; } 
-+td.eqnarray4 { width:5%; white-space: normal; }
-+td.eqnarray2 { width:5%; }
-+table.eqnarray-star, table.eqnarray {width:100%;}
-+div.eqnarray{text-align:center;}
-+div.array {text-align:center;}
-+div.pmatrix {text-align:center;}
-+span.pmatrix img{vertical-align:middle;}
-+div.pmatrix {text-align:center;}
-+img.cdots{vertical-align:middle;}
-+.partToc a, .partToc, .likepartToc a, .likepartToc {line-height: 200%; font-weight:bold; font-size:110%;}
-+.chapterToc a, .chapterToc, .likechapterToc a, .likechapterToc, .appendixToc a, .appendixToc {line-height: 200%; font-weight:bold;}
-+.caption td.id{font-weight: bold; white-space: nowrap; }
-+table.caption {text-align:center;}
-+h1.partHead{text-align: center}
-+p.bibitem { text-indent: -2em; margin-left: 2em; margin-top:0.6em; margin-bottom:0.6em; }
-+p.bibitem-p { text-indent: 0em; margin-left: 2em; margin-top:0.6em; margin-bottom:0.6em; }
-+.paragraphHead, .likeparagraphHead { margin-top:2em; font-weight: bold;}
-+.subparagraphHead, .likesubparagraphHead { font-weight: bold;}
-+.quote {margin-bottom:0.25em; margin-top:0.25em; margin-left:1em; }
-+.verse{white-space:nowrap; margin-left:2em}
-+div.maketitle {text-align:center;}
-+h2.titleHead{text-align:center;}
-+div.maketitle{ margin-bottom: 2em; }
-+div.author, div.date {text-align:center;}
-+div.thanks{text-align:left; margin-left:10%; font-size:80%; font-style:italic; }
-+div.author{white-space: nowrap;}
-+.quotation {margin-bottom:0.25em; margin-top:0.25em; margin-left:1em; }
-+h1.partHead{text-align: center}
-+div.verbatiminput {font-family: monospace; white-space: nowrap; }
-+P.fancyvrb {white-space: nowrap; margin:0em;}
-+div#fancyvrb1{ border-top: solid 0.4pt; }
-+div#fancyvrb1{ border-bottom: solid 0.4pt; }
-+div#fancyvrb2{ border-top: solid 0.4pt; }
-+div#fancyvrb2{ border-bottom: solid 0.4pt; }
-+div#fancyvrb3{ border-top: solid 0.4pt; }
-+div#fancyvrb3{ border-bottom: solid 0.4pt; }
-+div#fancyvrb4{ border-top: solid 0.4pt; }
-+div#fancyvrb4{ border-bottom: solid 0.4pt; }
-+div#fancyvrb5{ border-top: solid 0.4pt; }
-+div#fancyvrb5{ border-bottom: solid 0.4pt; }
-+div#fancyvrb6{ border-top: solid 0.4pt; }
-+div#fancyvrb6{ border-bottom: solid 0.4pt; }
-+div#fancyvrb7{ border-top: solid 0.4pt; }
-+div#fancyvrb7{ border-bottom: solid 0.4pt; }
-+div#fancyvrb8{ border-top: solid 0.4pt; }
-+div#fancyvrb8{ border-bottom: solid 0.4pt; }
-+div#fancyvrb9{ border-top: solid 0.4pt; }
-+div#fancyvrb9{ border-bottom: solid 0.4pt; }
-+div#fancyvrb10{ border-top: solid 0.4pt; }
-+div#fancyvrb10{ border-bottom: solid 0.4pt; }
-+div#fancyvrb11{ border-top: solid 0.4pt; }
-+div#fancyvrb11{ border-bottom: solid 0.4pt; }
-+div#fancyvrb12{ border-top: solid 0.4pt; }
-+div#fancyvrb12{ border-bottom: solid 0.4pt; }
-+div#fancyvrb13{ border-top: solid 0.4pt; }
-+div#fancyvrb13{ border-bottom: solid 0.4pt; }
-+div#fancyvrb14{ border-top: solid 0.4pt; }
-+div#fancyvrb14{ border-bottom: solid 0.4pt; }
-+div#fancyvrb15{ border-top: solid 0.4pt; }
-+div#fancyvrb15{ border-bottom: solid 0.4pt; }
-+div#fancyvrb16{ border-top: solid 0.4pt; }
-+div#fancyvrb16{ border-bottom: solid 0.4pt; }
-+div#fancyvrb17{ border-top: solid 0.4pt; }
-+div#fancyvrb17{ border-bottom: solid 0.4pt; }
-+div#fancyvrb18{ border-top: solid 0.4pt; }
-+div#fancyvrb18{ border-bottom: solid 0.4pt; }
-+div#fancyvrb19{ border-top: solid 0.4pt; }
-+div#fancyvrb19{ border-bottom: solid 0.4pt; }
-+div#fancyvrb20{ border-top: solid 0.4pt; }
-+div#fancyvrb20{ border-bottom: solid 0.4pt; }
-+div#fancyvrb21{ border-top: solid 0.4pt; }
-+div#fancyvrb21{ border-bottom: solid 0.4pt; }
-+div#fancyvrb22{ border-top: solid 0.4pt; }
-+div#fancyvrb22{ border-bottom: solid 0.4pt; }
-+div#fancyvrb23{ border-top: solid 0.4pt; }
-+div#fancyvrb23{ border-bottom: solid 0.4pt; }
-+div#fancyvrb24{ border-top: solid 0.4pt; }
-+div#fancyvrb24{ border-bottom: solid 0.4pt; }
-+div#fancyvrb25{ border-top: solid 0.4pt; }
-+div#fancyvrb25{ border-bottom: solid 0.4pt; }
-+div#fancyvrb26{ border-top: solid 0.4pt; }
-+div#fancyvrb26{ border-bottom: solid 0.4pt; }
-+div#fancyvrb27{ border-top: solid 0.4pt; }
-+div#fancyvrb27{ border-bottom: solid 0.4pt; }
-+div#fancyvrb28{ border-top: solid 0.4pt; }
-+div#fancyvrb28{ border-bottom: solid 0.4pt; }
-+div#fancyvrb29{ border-top: solid 0.4pt; }
-+div#fancyvrb29{ border-bottom: solid 0.4pt; }
-+div#fancyvrb30{ border-top: solid 0.4pt; }
-+div#fancyvrb30{ border-bottom: solid 0.4pt; }
-+div#fancyvrb31{ border-top: solid 0.4pt; }
-+div#fancyvrb31{ border-bottom: solid 0.4pt; }
-+div#fancyvrb32{ border-top: solid 0.4pt; }
-+div#fancyvrb32{ border-bottom: solid 0.4pt; }
-+div#fancyvrb33{ border-top: solid 0.4pt; }
-+div#fancyvrb33{ border-bottom: solid 0.4pt; }
-+div#fancyvrb34{ border-top: solid 0.4pt; }
-+div#fancyvrb34{ border-bottom: solid 0.4pt; }
-+div#fancyvrb35{ border-top: solid 0.4pt; }
-+div#fancyvrb35{ border-bottom: solid 0.4pt; }
-+div#fancyvrb36{ border-top: solid 0.4pt; }
-+div#fancyvrb36{ border-bottom: solid 0.4pt; }
-+div#fancyvrb37{ border-top: solid 0.4pt; }
-+div#fancyvrb37{ border-bottom: solid 0.4pt; }
-+div#fancyvrb38{ border-top: solid 0.4pt; }
-+div#fancyvrb38{ border-bottom: solid 0.4pt; }
-+div#fancyvrb39{ border-top: solid 0.4pt; }
-+div#fancyvrb39{ border-bottom: solid 0.4pt; }
-+div#fancyvrb40{ border-top: solid 0.4pt; }
-+div#fancyvrb40{ border-bottom: solid 0.4pt; }
-+div#fancyvrb41{ border-top: solid 0.4pt; }
-+div#fancyvrb41{ border-bottom: solid 0.4pt; }
-+div#fancyvrb42{ border-top: solid 0.4pt; }
-+div#fancyvrb42{ border-bottom: solid 0.4pt; }
-+div#fancyvrb43{ border-top: solid 0.4pt; }
-+div#fancyvrb43{ border-bottom: solid 0.4pt; }
-+div#fancyvrb44{ border-top: solid 0.4pt; }
-+div#fancyvrb44{ border-bottom: solid 0.4pt; }
-+div#fancyvrb45{ border-top: solid 0.4pt; }
-+div#fancyvrb45{ border-bottom: solid 0.4pt; }
-+div#fancyvrb46{ border-top: solid 0.4pt; }
-+div#fancyvrb46{ border-bottom: solid 0.4pt; }
-+div#fancyvrb47{ border-top: solid 0.4pt; }
-+div#fancyvrb47{ border-bottom: solid 0.4pt; }
-+div#fancyvrb48{ border-top: solid 0.4pt; }
-+div#fancyvrb48{ border-bottom: solid 0.4pt; }
-+div#fancyvrb49{ border-top: solid 0.4pt; }
-+div#fancyvrb49{ border-bottom: solid 0.4pt; }
-+div#fancyvrb50{ border-top: solid 0.4pt; }
-+div#fancyvrb50{ border-bottom: solid 0.4pt; }
-+div#fancyvrb51{ border-top: solid 0.4pt; }
-+div#fancyvrb51{ border-bottom: solid 0.4pt; }
-+div#fancyvrb52{ border-top: solid 0.4pt; }
-+div#fancyvrb52{ border-bottom: solid 0.4pt; }
-+div#fancyvrb53{ border-top: solid 0.4pt; }
-+div#fancyvrb53{ border-bottom: solid 0.4pt; }
-+div#fancyvrb54{ border-top: solid 0.4pt; }
-+div#fancyvrb54{ border-bottom: solid 0.4pt; }
-+div#fancyvrb55{ border-top: solid 0.4pt; }
-+div#fancyvrb55{ border-bottom: solid 0.4pt; }
-+div#fancyvrb56{ border-top: solid 0.4pt; }
-+div#fancyvrb56{ border-bottom: solid 0.4pt; }
-+div#fancyvrb57{ border-top: solid 0.4pt; }
-+div#fancyvrb57{ border-bottom: solid 0.4pt; }
-+div#fancyvrb58{ border-top: solid 0.4pt; }
-+div#fancyvrb58{ border-bottom: solid 0.4pt; }
-+div#fancyvrb59{ border-top: solid 0.4pt; }
-+div#fancyvrb59{ border-bottom: solid 0.4pt; }
-+div#fancyvrb60{ border-top: solid 0.4pt; }
-+div#fancyvrb60{ border-bottom: solid 0.4pt; }
-+/* end css.sty */
---- darcs-1.0.6.orig/.depend
-+++ darcs-1.0.6/.depend
-@@ -1,219 +1,197 @@
- # DO NOT DELETE: Beginning of Haskell dependencies
-+Context.o : Context.hs
-+GitRepo.o : GitRepo.lhs
-+AtExit.o : AtExit.lhs
-+FileSystem.o : FileSystem.hs
-+Workaround.o : Workaround.hs
-+UTF8.o : UTF8.lhs
-+RegChars.o : RegChars.lhs
-+RawMode.o : RawMode.hs
-+PatchMatchData.o : PatchMatchData.lhs
-+Map.o : Map.hs
-+IsoDate.o : IsoDate.lhs
-+Exec.o : Exec.lhs
-+DateMatcher.o : DateMatcher.lhs
-+DateMatcher.o : IsoDate.hi
-+CommandLine.o : CommandLine.lhs
-+DarcsFlags.o : DarcsFlags.lhs
-+DarcsFlags.o : PatchMatchData.hi
-+ThisVersion.o : ThisVersion.lhs
- Autoconf.o : Autoconf.lhs
--Autoconf.o : ./ThisVersion.hi
--CheckFileSystem.o : CheckFileSystem.lhs
--CheckFileSystem.o : ./Lock.hi
--CheckFileSystem.o : ./DarcsUtils.hi
--ColourPrinter.o : ColourPrinter.lhs
--ColourPrinter.o : ./FastPackedString.hi
--ColourPrinter.o : ./Printer.hi
--ColourPrinter.o : ./External.hi
--Compat.o : Compat.hs
--Compat.o : ./Workaround.hi
--Compat.o : ./DarcsUtils.hi
-+Autoconf.o : ThisVersion.hi
- Curl.o : Curl.hs
--DarcsIO.o : DarcsIO.lhs
--DarcsIO.o : ./Workaround.hi
--DarcsIO.o : ./Lock.hi
--DarcsIO.o : ./FileName.hi
--DarcsIO.o : ./Printer.hi
--DarcsIO.o : ./DarcsUtils.hi
--DarcsIO.o : ./FastPackedString.hi
--Pristine.o : Pristine.lhs
--Pristine.o : ./External.hi
--Pristine.o : ./FileName.hi
--Pristine.o : ./Patch.hi
--Pristine.o : DarcsIO.hi
--Pristine.o : ./DarcsFlags.hi
--Pristine.o : ./PopulationData.hi
--Pristine.o : ./PatchInfo.hi
--Pristine.o : ./DarcsUtils.hi
--Pristine.o : ./SlurpDirectory.hi
--Pristine.o : ./Workaround.hi
--Pristine.o : ./Diff.hi
--Pristine.o : ./Lock.hi
--DarcsArguments.o : DarcsArguments.lhs
--DarcsArguments.o : ./DarcsUtils.hi
--DarcsArguments.o : ./Printer.hi
--DarcsArguments.o : ./SlurpDirectory.hi
--DarcsArguments.o : ./DarcsRepo.hi
--DarcsArguments.o : ./Repository.hi
--DarcsArguments.o : ./DarcsFlags.hi
--DarcsArguments.o : ./PatchMatchData.hi
--DarcsArguments.o : ./FilePathUtils.hi
--DarcsArguments.o : ./RepoPrefs.hi
--DarcsArguments.o : ./PatchShow.hi
--DarcsArguments.o : ./PatchInfo.hi
--DarcsArguments.o : ./Patch.hi
--DarcsArguments.o : ./Exec.hi
--DarcsFlags.o : DarcsFlags.lhs
--DarcsFlags.o : ./PatchMatchData.hi
--DarcsUtils.o : DarcsUtils.lhs
--DarcsUtils.o : ./Printer.hi
--DarcsUtils.o : ./Workaround.hi
--CommandLine.o : CommandLine.lhs
--DateMatcher.o : DateMatcher.lhs
--DateMatcher.o : ./IsoDate.hi
--Depends.o : Depends.lhs
--Depends.o : DarcsUtils.hi
--Depends.o : ./Printer.hi
--Depends.o : ./PatchSet.hi
--Depends.o : ./PatchInfo.hi
--Depends.o : ./Patch.hi
--Diff.o : Diff.lhs
--Diff.o : DarcsUtils.hi
--Diff.o : DarcsFlags.hi
--Diff.o : ./RepoPrefs.hi
--Diff.o : ./Patch.hi
--Diff.o : ./SlurpDirectory.hi
--Diff.o : ./FastPackedString.hi
--Exec.o : Exec.lhs
--External.o : External.hs
--External.o : DarcsUtils.hi
--External.o : ./Printer.hi
--External.o : ./DarcsURL.hi
--External.o : Exec.hi
--External.o : Curl.hi
--External.o : Autoconf.hi
--External.o : CommandLine.hi
--External.o : ./Lock.hi
--External.o : ./FastPackedString.hi
--External.o : DarcsFlags.hi
--External.o : ./Workaround.hi
-+Curl.o : Autoconf.hi
- FastPackedString.o : FastPackedString.hs
- FastPackedString.o : Autoconf.hi
- FileName.o : FileName.lhs
- FileName.o : FastPackedString.hi
--FileName.o : ./UTF8.hi
--FilePathMonad.o : FilePathMonad.lhs
--FilePathMonad.o : DarcsUtils.hi
--FilePathMonad.o : FileName.hi
--FilePathMonad.o : ./PatchCommute.hi
--FilePathMonad.o : DarcsIO.hi
--FilePathUtils.o : FilePathUtils.hs
--FilePathUtils.o : DarcsUtils.hi
--FilePathUtils.o : ./DarcsURL.hi
--FilePathUtils.o : FileName.hi
--FilePathUtils.o : Autoconf.hi
--IsoDate.o : IsoDate.lhs
-+FileName.o : UTF8.hi
-+PatchCheck.o : PatchCheck.lhs
-+PatchCheck.o : FastPackedString.hi
-+Printer.o : Printer.lhs
-+Printer.o : FastPackedString.hi
-+DarcsUtils.o : DarcsUtils.lhs
-+DarcsUtils.o : Printer.hi
-+DarcsUtils.o : Workaround.hi
-+Compat.o : Compat.hs
-+Compat.o : Workaround.hi
-+Compat.o : DarcsUtils.hi
-+SignalHandler.o : SignalHandler.lhs
-+SignalHandler.o : Compat.hi
-+SignalHandler.o : Workaround.hi
- Lcs.o : Lcs.lhs
- Lcs.o : DarcsUtils.hi
--Lcs.o : ./Map.hi
-+Lcs.o : Map.hi
- Lcs.o : FastPackedString.hi
-+DarcsURL.o : DarcsURL.hs
-+DarcsURL.o : DarcsUtils.hi
- Lock.o : Lock.lhs
- Lock.o : Compat.hi
--Lock.o : ./AtExit.hi
--Lock.o : ./Printer.hi
--Lock.o : ./SignalHandler.hi
-+Lock.o : AtExit.hi
-+Lock.o : Printer.hi
-+Lock.o : SignalHandler.hi
- Lock.o : FastPackedString.hi
- Lock.o : DarcsUtils.hi
--L[...incomplete...]



More information about the Pkg-haskell-commits mailing list