aboutsummaryrefslogtreecommitdiff
path: root/CabalHelper/Compat/Version.hs
diff options
context:
space:
mode:
authorDaniel Gröber <dxld@darkboxed.org>2017-09-18 01:23:22 +0200
committerDaniel Gröber <dxld@darkboxed.org>2017-09-18 01:35:40 +0200
commitf864a5eae8262752162c6b0d124aea4601ed9ac1 (patch)
tree1b765d25741b6e47d4ad458c8041c0881dd353b8 /CabalHelper/Compat/Version.hs
parent70d743eb6a8b7f8da182524fa0b2c4bf02399d50 (diff)
Fix literally everything :)
Sorry for the megacommit - Seperate modules into: - Compiletime, modules which are only used while building the package - Runtime, modues included in the wrapper binary to be compiled on the users machine at runtime - Shared, modues used in both contexts - Refactor runtime compilation - Completely revamp output paths - Don't chdir when invoking ghc - Require cabal-version 1.14 in cabal file
Diffstat (limited to 'CabalHelper/Compat/Version.hs')
-rw-r--r--CabalHelper/Compat/Version.hs25
1 files changed, 0 insertions, 25 deletions
diff --git a/CabalHelper/Compat/Version.hs b/CabalHelper/Compat/Version.hs
deleted file mode 100644
index d2389aa..0000000
--- a/CabalHelper/Compat/Version.hs
+++ /dev/null
@@ -1,25 +0,0 @@
-{-# LANGUAGE CPP #-}
-module CabalHelper.Compat.Version
- ( DataVersion
- , toDataVersion
- , fromDataVersion
- , Data.Version.showVersion
- ) where
-
-import qualified Data.Version
-import qualified Distribution.Version (Version)
-#if MIN_VERSION_Cabal(2,0,0)
-import qualified Distribution.Version (versionNumbers, mkVersion)
-#endif
-
-type DataVersion = Data.Version.Version
-
-toDataVersion :: Distribution.Version.Version -> Data.Version.Version
-fromDataVersion :: Data.Version.Version -> Distribution.Version.Version
-#if MIN_VERSION_Cabal(2,0,0)
-toDataVersion v = Data.Version.Version (Distribution.Version.versionNumbers v) []
-fromDataVersion (Data.Version.Version vs _) = Distribution.Version.mkVersion vs
-#else
-toDataVersion = id
-fromDataVersion = id
-#endif