HaTeX-qq 0.0.1.2 → 0.1.0.0
raw patch · 2 files changed
+33/−47 lines, 2 filesdep ~HaTeXdep ~antiquoterdep ~base
Dependency ranges changed: HaTeX, antiquoter, base, haskell-src-meta, template-haskell, text, uniplate
Files
- HaTeX-qq.cabal +33/−39
- src/Text/LaTeX/QQ/Orphans.hs +0/−8
HaTeX-qq.cabal view
@@ -1,44 +1,38 @@-name: HaTeX-qq-version: 0.0.1.2-synopsis: Quasiquoters for HaTeX-description: Quasiquoters for HaTeX-license: BSD3-license-file: LICENSE-author: Hiromi ISHII <konn.jinro_at_gmail.com>-maintainer: Hiromi ISHII <konn.jinro_at_gmail.com>-copyright: (c) Hiromi ISHII 2015-category: Text-build-type: Simple-extra-source-files: Changelog.md-cabal-version: >=1.10+name: HaTeX-qq+version: 0.1.0.0+cabal-version: >=1.10+build-type: Simple+license: BSD3+license-file: LICENSE+copyright: (c) Hiromi ISHII 2015+maintainer: Hiromi ISHII <konn.jinro_at_gmail.com>+synopsis: Quasiquoters for HaTeX+description:+ Quasiquoters for HaTeX+category: Text+author: Hiromi ISHII <konn.jinro_at_gmail.com>+extra-source-files:+ Changelog.md source-repository head- type: git- location: git://github.com/konn/HaTeX-qq.git+ type: git+ location: git://github.com/konn/HaTeX-qq.git library- exposed-modules: Text.LaTeX.QQ Text.LaTeX.Utils- other-modules: Text.LaTeX.QQ.Orphans- other-extensions: TemplateHaskell OverloadedStrings- build-depends: base >= 4 && <5,- uniplate == 1.6.*,- HaTeX >= 3.15 && < 3.17,- antiquoter == 0.1.*,- template-haskell >= 2.8 && < 2.11,- text >= 1.0 && < 1.3,- haskell-src-meta == 0.6.*- hs-source-dirs: src- default-language: Haskell2010-+ exposed-modules:+ Text.LaTeX.QQ+ Text.LaTeX.Utils+ build-depends:+ base >=4.9.1.0 && <4.10,+ uniplate >=1.6.12 && <1.7,+ HaTeX >=3.17.2.0 && <3.18,+ antiquoter >=0.1.1.0 && <0.2,+ template-haskell >=2.11.1.0 && <2.12,+ text >=1.2.2.1 && <1.3,+ haskell-src-meta >=0.7.0.1 && <0.8+ default-language: Haskell2010+ other-extensions: TemplateHaskell OverloadedStrings+ hs-source-dirs: src+ other-modules:+ Text.LaTeX.QQ.Orphans --- test-suite spec--- type: exitcode-stdio-1.0--- default-language: Haskell2010--- hs-source-dirs: test--- ghc-options: -Wall--- Main-is: Spec.hs--- build-depends: base--- , hspec--- , QuickCheck--- , HaTeX-qq---
src/Text/LaTeX/QQ/Orphans.hs view
@@ -7,14 +7,6 @@ import Text.LaTeX.Base.Syntax (LaTeX (..), MathType (..), Measure (..)) import Text.LaTeX.Base.Syntax (TeXArg (..)) -deriving instance Data LaTeX-deriving instance Data MathType-deriving instance Typeable MathType-deriving instance Data Measure-deriving instance Typeable Measure-deriving instance Data TeXArg-deriving instance Typeable TeXArg- instance Biplate TeXArg LaTeX where biplate (FixArg t) = plate FixArg |* t biplate (OptArg t) = plate OptArg |* t