[commit: packages/unix] ghc-7.8: Convert `changelog` to markdown format (0eb7d4b)

git at git.haskell.org git at git.haskell.org
Fri Feb 28 23:39:46 UTC 2014


Repository : ssh://git@git.haskell.org/unix

On branch  : ghc-7.8
Link       : http://ghc.haskell.org/trac/ghc/changeset/0eb7d4be2c20ecb5872db429855b94a704b285f5/unix

>---------------------------------------------------------------

commit 0eb7d4be2c20ecb5872db429855b94a704b285f5
Author: Herbert Valerio Riedel <hvr at gnu.org>
Date:   Sun Feb 2 11:03:00 2014 +0100

    Convert `changelog` to markdown format
    
    Signed-off-by: Herbert Valerio Riedel <hvr at gnu.org>
    
    (cherry picked from commit 4a08984afe5390d91f10f9b1caf7365e6a93595b)


>---------------------------------------------------------------

0eb7d4be2c20ecb5872db429855b94a704b285f5
 changelog    |   47 -----------------------------------------------
 changelog.md |   44 ++++++++++++++++++++++++++++++++++++++++++++
 unix.cabal   |    4 ++--
 3 files changed, 46 insertions(+), 49 deletions(-)

diff --git a/changelog b/changelog
deleted file mode 100644
index ce72345..0000000
--- a/changelog
+++ /dev/null
@@ -1,47 +0,0 @@
--*-changelog-*-
-
-2.7.0.0  Nov 2013
-
-        * New `forkProcessWithUnmask` function in the style of `forkIOWithUnmask`
-
-        * Change `forkProcess` to inherit the exception masking state of its caller
-
-        * Add new `Bool` flag to `ProcessStatus(Terminated)` constructor
-        indicating whether a core dump occured
-
-        * New functions in "System.Posix.Files(.ByteString)" for operating
-        on high resolution file timestamps:
-
-         + `setFdTimesHiRes :: Fd -> POSIXTime -> POSIXTime -> IO ()`
-         + `setFileTimesHiRes :: FilePath -> POSIXTime -> POSIXTime -> IO ()`
-         + `setSymbolicLinkTimesHiRes :: FilePath -> POSIXTime -> POSIXTime -> IO ()`
-         + `touchFd :: Fd -> IO ()`
-         + `touchSymbolicLink :: FilePath -> IO ()`
-
-        * Export `SignalInfo(..)` and `SignalSpecificInfo(..)` as well as
-        the two `Handler` constructors `CatchInfo` and `CatchInfoOnce`
-        from "System.Posix.Signals".
-
-        * Don't export `seekDirStream` and `tellDirStream` if the
-        underlying `seekdir(3)`/`telldir(3)` system calls are not
-        available (as on Android).
-
-        * Fix library detection of `shm*` on openSUSE (#8350)
-
-        * Minor documentation fixes/updates
-
-        * Update package to `cabal-version >= 1.10` format
-
-2.6.0.1  Jan 2013
-
-        * Bundled with GHC 7.6.2
-        * Fix memory corruption issue in `putEnv`
-        * Use `pthread_kill(3)` instead of `raise(2)` on OS X too
-
-2.6.0.0  Sep 2012
-
-        * Bundled with GHC 7.6.1
-        * New functions `mkdtemp` and `mkstemps` in "System.Posix.Temp"
-        * New functions `setEnvironment` and `cleanEnv`
-        * New functions `accessTimeHiRes`, `modificationTimeHiRes`, and
-        `statusChangeTimeHiRes` for accessing high resolution timestamps
diff --git a/changelog.md b/changelog.md
new file mode 100644
index 0000000..272c503
--- /dev/null
+++ b/changelog.md
@@ -0,0 +1,44 @@
+## 2.7.0.0  *Nov 2013*
+
+  * New `forkProcessWithUnmask` function in the style of `forkIOWithUnmask`
+
+  * Change `forkProcess` to inherit the exception masking state of its caller
+
+  * Add new `Bool` flag to `ProcessStatus(Terminated)` constructor
+    indicating whether a core dump occured
+
+  * New functions in `System.Posix.Files{,.ByteString}` for operating
+    on high resolution file timestamps:
+
+        setFdTimesHiRes :: Fd -> POSIXTime -> POSIXTime -> IO ()
+        setFileTimesHiRes :: FilePath -> POSIXTime -> POSIXTime -> IO ()
+        setSymbolicLinkTimesHiRes :: FilePath -> POSIXTime -> POSIXTime -> IO ()
+        touchFd :: Fd -> IO ()
+        touchSymbolicLink :: FilePath -> IO ()
+
+  * Export `SignalInfo(..)` and `SignalSpecificInfo(..)` as well as
+    the two `Handler` constructors `CatchInfo` and `CatchInfoOnce`
+    from `System.Posix.Signals`
+
+  * Don't export `seekDirStream` and `tellDirStream` if the underlying
+    `seekdir(3)`/`telldir(3)` system calls are not available (as on Android)
+
+  * Fix library detection of `shm*` on openSUSE (#8350)
+
+  * Minor documentation fixes/updates
+
+  * Update package to `cabal-version >= 1.10` format
+
+## 2.6.0.1  *Jan 2013*
+
+  * Bundled with GHC 7.6.2
+  * Fix memory corruption issue in `putEnv`
+  * Use `pthread_kill(3)` instead of `raise(2)` on OS X too
+
+## 2.6.0.0  *Sep 2012*
+
+  * Bundled with GHC 7.6.1
+  * New functions `mkdtemp` and `mkstemps` in `System.Posix.Temp`
+  * New functions `setEnvironment` and `cleanEnv`
+  * New functions `accessTimeHiRes`, `modificationTimeHiRes`, and
+    `statusChangeTimeHiRes` for accessing high resolution timestamps
diff --git a/unix.cabal b/unix.cabal
index 3ad3c98..03d47b4 100644
--- a/unix.cabal
+++ b/unix.cabal
@@ -1,5 +1,5 @@
 name:           unix
-version:        2.7.0.0
+version:        2.7.0.1
 -- GHC 7.6.1 released with 2.6.0.0
 license:        BSD3
 license-file:   LICENSE
@@ -19,7 +19,7 @@ description:
     The package is not supported under Windows (except under Cygwin).
 
 extra-source-files:
-    changelog
+    changelog.md
     config.guess
     config.sub
     configure



More information about the ghc-commits mailing list