[Pkg-haskell-commits] darcs: ftphs: Added debugging support to FTP parser

John Goerzen jgoerzen at complete.org
Fri Jan 4 14:19:09 UTC 2013


Sat Oct 23 20:32:16 UTC 2004  John Goerzen <jgoerzen at complete.org>
  * Added debugging support to FTP parser
  Ignore-this: 236aa6c74e9585bef8f9b2846538d461
  
  Keywords: 
  
  
  (jgoerzen at complete.org--projects/missingh--head--1.0--patch-104)

    A ./libghc6-missingh-dev.postinst.debhelper
    A ./libghc6-missingh-dev.prerm.debhelper

Sat Oct 23 20:32:16 UTC 2004  John Goerzen <jgoerzen at complete.org>
  * Added debugging support to FTP parser
  Ignore-this: 236aa6c74e9585bef8f9b2846538d461
  
  Keywords: 
  
  
  (jgoerzen at complete.org--projects/missingh--head--1.0--patch-104)
diff -rN -u old-ftphs//libghc6-missingh-dev.postinst.debhelper new-ftphs//libghc6-missingh-dev.postinst.debhelper
--- old-ftphs//libghc6-missingh-dev.postinst.debhelper	1970-01-01 00:00:00.000000000 +0000
+++ new-ftphs//libghc6-missingh-dev.postinst.debhelper	2013-01-04 14:19:09.211719683 +0000
@@ -0,0 +1,26 @@
+# Automatically added by dh_haskell
+GHC=ghc-6.2.1
+CONFIGFILE=/usr/lib/haskell-packages/ghc6/lib/MissingH-0.4.0/installed-pkg-config
+
+
+case "$1" in
+    configure)
+    /usr/lib/$GHC/bin/ghc-pkg -g --add-package \
+      < $CONFIGFILE
+
+    ;;
+
+    abort-upgrade|abort-remove|abort-deconfigure)
+
+    ;;
+
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+
+
+# arch-tag: haskell-devscripts generic GHC postinst template
+# End automatically added section
diff -rN -u old-ftphs//libghc6-missingh-dev.prerm.debhelper new-ftphs//libghc6-missingh-dev.prerm.debhelper
--- old-ftphs//libghc6-missingh-dev.prerm.debhelper	1970-01-01 00:00:00.000000000 +0000
+++ new-ftphs//libghc6-missingh-dev.prerm.debhelper	2013-01-04 14:19:09.211719683 +0000
@@ -0,0 +1,25 @@
+# Automatically added by dh_haskell
+
+GHC=ghc-6.2.1
+CONFIGFILE=/usr/lib/haskell-packages/ghc6/lib/MissingH-0.4.0/installed-pkg-config
+CABALNAME=MissingH
+
+
+
+case "$1" in
+    remove|upgrade|deconfigure)
+      /usr/lib/$GHC/bin/ghc-pkg -r $CABALNAME
+      rm -vf /usr/lib/haskell-packages/ghc6/lib/MissingH-0.4.0/HSMissingH-0.4.0.o
+
+        ;;
+    failed-upgrade)
+        ;;
+    *)
+        echo "prerm called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+
+# arch-tag: haskell-devscripts generic GHC prerm template
+# End automatically added section





More information about the Pkg-haskell-commits mailing list