hatex-guide 1.0.1.3 → 1.0.1.4
raw patch · 5 files changed
+16/−14 lines, 5 filessetup-changed
Files
- Setup.hs +3/−2
- Text/LaTeX/Guide/Auto.hs +10/−0
- Text/LaTeX/Guide/Aux.hs +0/−9
- Text/LaTeX/Guide/Backend/LaTeX.hs +1/−1
- hatex-guide.cabal +2/−2
Setup.hs view
@@ -27,7 +27,7 @@ -- Write aux module let dg = "Text" </> "LaTeX" </> "Guide" createDirectoryIfMissing True dg- getAux >>= writeFile (dg </> "Aux" <.> "hs") . auxmodule+ getAux >>= writeFile (dg </> "Auto" <.> "hs") . auxmodule -- defaultMain @@ -40,7 +40,8 @@ auxmodule :: Aux -> String auxmodule a = unlines [- "module Text.LaTeX.Guide.Aux ("+ "-- | Automatically generated module."+ , "module Text.LaTeX.Guide.Auto (" , " guideVersion" , " ) where" , ""
+ Text/LaTeX/Guide/Auto.hs view
@@ -0,0 +1,10 @@+-- | Automatically generated module.+module Text.LaTeX.Guide.Auto (+ guideVersion+ ) where++import Data.Version++-- | The version of the guide. Based on the version of the package.+guideVersion :: Version+guideVersion = Version [1,0,1,4] []
− Text/LaTeX/Guide/Aux.hs
@@ -1,9 +0,0 @@-module Text.LaTeX.Guide.Aux (- guideVersion- ) where--import Data.Version---- | The version of the guide. Based on the version of the package.-guideVersion :: Version-guideVersion = Version [1,0,1,3] []
Text/LaTeX/Guide/Backend/LaTeX.hs view
@@ -7,7 +7,7 @@ import Text.LaTeX.Guide.Syntax import Text.LaTeX.Guide.Info hiding (LaTeX)-import Text.LaTeX.Guide.Aux+import Text.LaTeX.Guide.Auto -- import Text.LaTeX import Text.LaTeX.Packages.Color
hatex-guide.cabal view
@@ -1,5 +1,5 @@ Name: hatex-guide-Version: 1.0.1.3+Version: 1.0.1.4 Author: Daniel Díaz Build-type: Custom Category: LaTeX@@ -43,7 +43,7 @@ Exposed-modules: Text.LaTeX.Guide Other-modules:- Text.LaTeX.Guide.Aux+ Text.LaTeX.Guide.Auto Text.LaTeX.Guide.Syntax Text.LaTeX.Guide.Info Text.LaTeX.Guide.Backend.LaTeX