From 5c6e5c7c059a2713144441be2d32e073519cdb5a Mon Sep 17 00:00:00 2001
From: Herbert Valerio Riedel <hvr@gnu.org>
Date: Tue, 20 May 2014 11:34:47 +0200
Subject: [PATCH] Update vector.cabal and bump version to 0.10.9.2

This backports some changes from the vector.cabal file in the master
branch, including the external changelog and more importantly a change
of the maintainer-field.
---
 changelog    | 17 +++++++++++++++++
 vector.cabal | 24 ++++++++----------------
 2 files changed, 25 insertions(+), 16 deletions(-)
 create mode 100644 changelog

diff --git a/changelog b/changelog
new file mode 100644
index 0000000..0477122
--- /dev/null
+++ b/changelog
@@ -0,0 +1,17 @@
+Changes in version 0.10.9.2
+
+ * Fix compilation with GHC 7.9
+
+Changes in version 0.10.9.1
+
+ * Implement poly-kinded Typeable
+
+Changes in version 0.10.0.1
+
+ * Require `primitive` to include workaround for a GHC array copying bug
+
+Changes in version 0.10
+
+ * `NFData` instances
+ * More efficient block fills
+ * Safe Haskell support removed
diff --git a/vector.cabal b/vector.cabal
index a2f657e..452ba96 100644
--- a/vector.cabal
+++ b/vector.cabal
@@ -1,9 +1,10 @@
 Name:           vector
-Version:        0.10.9.1
+Version:        0.10.9.2
+-- don't forget to update the changelog file!
 License:        BSD3
 License-File:   LICENSE
 Author:         Roman Leshchinskiy <rl@cse.unsw.edu.au>
-Maintainer:     Roman Leshchinskiy <rl@cse.unsw.edu.au>
+Maintainer:     libraries@haskell.org
 Copyright:      (c) Roman Leshchinskiy 2008-2012
 Homepage:       https://github.com/haskell/vector
 Bug-Reports:    https://github.com/haskell/vector/issues
@@ -32,19 +33,6 @@ Description:
         There is also a (draft) tutorial on common uses of vector.
         .
         * <http://haskell.org/haskellwiki/Numeric_Haskell:_A_Vector_Tutorial>
-        .
-        Changes in version 0.10.0.1
-        .
-        * Require @primitive@ to include workaround for a GHC array copying bug
-        .
-        Changes in version 0.10
-        .
-	* @NFData@ instances
-	.
-	* More efficient block fills
-	.
-	* Safe Haskell support removed
-	.
 
 Cabal-Version:  >= 1.6
 Build-Type:     Simple
@@ -75,22 +63,26 @@ Extra-Source-Files:
       benchmarks/TestData/Graph.hs
       benchmarks/TestData/ParenTree.hs
       benchmarks/TestData/Random.hs
+      changelog
       internal/GenUnboxTuple.hs
       internal/unbox-tuple-instances
 
 Flag BoundsChecks
   Description: Enable bounds checking
   Default: True
+  Manual: True
 
 Flag UnsafeChecks
   Description: Enable bounds checking in unsafe operations at the cost of a
                significant performance penalty
   Default: False
+  Manual: True
 
 Flag InternalChecks
   Description: Enable internal consistency checks at the cost of a
                significant performance penalty
   Default: False
+  Manual: True
 
 
 Library
@@ -149,4 +141,4 @@ Library
 
 source-repository head
   type:     git
-  location: https://github.com/haskell/vector
+  location: https://github.com/haskell/vector.git
-- 
GitLab