diff --git a/README b/README
deleted file mode 100644
--- a/README
+++ /dev/null
@@ -1,51 +0,0 @@
-Parsers for the Internet Message Standard
-=========================================
-
-:Latest Release: hsemail-1.3.tar.gz_
-:Darcs:          darcs_ get --partial http://cryp.to/hsemail/
-
-Synopsis
---------
-
-  This package contains Parsec_ combinators for the syntax of
-  Internet messages, such as e-mail, news articles, namely
-  RFC2234, RFC2821, and RFC2822.
-
-  The ``example`` directory contains two small programs that can
-  be run as follows::
-
-    $ runhaskell message-test.hs <message-test.input
-    $ runhaskell smtp-test.hs <smtp-test.input
-
-Documentation
--------------
-
-  `Reference Documentation`_
-     Haddock-generated reference of all exported functions.
-
-See Also
---------
-
-  `librfc2822`_
-     An E-mail parser library for C++ programmers.
-
-Copyleft
---------
-
-  Copyright (c) 2008 Peter Simons <simons@cryp.to>. All rights
-  reserved. This software is released under `BSD-style license
-  <LICENSE>`_.
-
------------------------------------------------------------------
-
-`[Homepage] <http://cryp.to/>`_
-
-.. _Parsec: http://www.cs.uu.nl/people/daan/parsec.html
-
-.. _darcs: http://abridgegame.org/darcs/
-
-.. _hsemail-1.3.tar.gz: http://cryp.to/hsemail/hsemail-1.3.tar.gz
-
-.. _Reference Documentation: docs/index.html
-
-.. _librfc2822: http://cryp.to/librfc2822/
diff --git a/hsemail.cabal b/hsemail.cabal
--- a/hsemail.cabal
+++ b/hsemail.cabal
@@ -1,24 +1,35 @@
-Name:           hsemail
-Version:        1.3
-Author:         Peter Simons <simons@cryp.to>
-License:        BSD3
-License-file:   LICENSE
-Maintainer:     simons@cryp.to
-Homepage:       http://cryp.to/hsemail/
-Synopsis:       Internet Message Parsers
-Description:    Parsers for the syntax defined in RFC2821 and 2822
-Category:       Parsing
-Build-Depends:  base, mtl, parsec, old-time
-Build-Type:     Simple
-GHC-Options:    -Wall
-Exposed-Modules:
-    Text.ParserCombinators.Parsec.Rfc2234,
-    Text.ParserCombinators.Parsec.Rfc2821,
-    Text.ParserCombinators.Parsec.Rfc2822
-Data-files:
-    README,
-    prologue.txt,
-    example/message-test.hs,
-    example/message-test.input,
-    example/smtp-test.hs,
-    example/smtp-test.input
+Name:                   hsemail
+Version:                1.4
+Copyright:              (c) 2004-2010 Peter Simons
+License:                BSD3
+License-File:           LICENSE
+Author:                 Peter Simons <simons@cryp.to>
+Maintainer:             Peter Simons <simons@cryp.to>
+Homepage:               http://gitorious.org/hsemail
+Category:               Parsing
+Synopsis:               Internet Message Parsers
+Description:            Parsers for the syntax defined in RFC2821 and 2822
+Cabal-Version:          >= 1.6
+Build-Type:             Simple
+Tested-With:            GHC == 6.12.1
+
+Extra-Source-Files:     example/message-test.hs
+                        example/message-test.input
+                        example/smtp-test.hs
+                        example/smtp-test.input
+
+Source-Repository this
+  Tag:                  v1.4
+  Type:                 git
+  Location:             git://gitorious.org/hsemail/mainline.git
+
+Source-Repository head
+  Type:                 git
+  Location:             git://gitorious.org/hsemail/mainline.git
+
+Library
+  Build-Depends:        base >= 3 && < 5, mtl, parsec, old-time
+  Exposed-Modules:      Text.ParserCombinators.Parsec.Rfc2234
+                        Text.ParserCombinators.Parsec.Rfc2821
+                        Text.ParserCombinators.Parsec.Rfc2822
+  Ghc-Options:          -Wall
diff --git a/prologue.txt b/prologue.txt
deleted file mode 100644
--- a/prologue.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-This package provides a myriad parsers for Internet messages
-as defined in RFC2234, RFC2821, and RFC2822. That would be
-e-mail, mostly.
