aboutsummaryrefslogtreecommitdiff
path: root/haddock.cabal
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 2.15.0Mateusz Kowalczyk2014-03-111-1/+1
|
* Update maintainerMateusz Kowalczyk2014-01-121-1/+1
|
* Support for bold.Mateusz Kowalczyk2014-01-121-0/+2
| | | | | | | Conflicts: src/Haddock/Backends/Hoogle.hs src/Haddock/Interface/Rename.hs src/Haddock/Parser.hs
* Rename Haddock.ParseSpec to Haddock.ParserSpecSimon Hengel2014-01-121-1/+1
|
* One pass parser and tests.Mateusz Kowalczyk2014-01-121-20/+7
| | | | | | | | We remove the HTML test as it is no longer necessary. We cover the test case in spec tests and other HTML tests but keeping this around fails: this is because the new parser has different semantics there. In fact, I suspect the original behaviour was a bug that wasn't caught/fixed but simply included as-is during the testing.
* Add ByteString version of AttoparsecMateusz Kowalczyk2014-01-121-17/+40
|
* Bump versionSimon Hengel2013-11-101-2/+2
|
* Update Git repo URL in `.cabal` fileHerbert Valerio Riedel2013-09-111-1/+1
|
* Use Hspec instead of nanospecMateusz Kowalczyk2013-09-031-2/+1
| | | | | | This is motivated by the fact that Haddock tests are not ran by the GHC's ‘validate’ script so we're pretty liberal on dependencies in that area. Full Hspec gives us some nice features such as Quickcheck integration.
* LaTeX tests setupMateusz Kowalczyk2013-08-271-0/+10
|
* Use Alex 3's Unicode support to properly lex source files as UTF-8Max Bolingbroke2013-03-101-2/+2
| | | | Signed-off-by: David Waern <david.waern@gmail.com>
* Merge branch 'ghc-7.6' into ghc-7.6-merge-2Kazu Yamamoto2013-02-011-106/+113
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: haddock.cabal src/Haddock/Interface/AttachInstances.hs src/Haddock/Interface/Create.hs src/Haddock/Interface/LexParseRn.hs src/Haddock/InterfaceFile.hs src/Haddock/Types.hs Only GHC HEAD can compile this. GHC 7.6.x cannot compile this. Some test fail.
| * Add missing test files to cabal file (fixes #230)Simon Hengel2012-12-071-3/+6
| |
| * Bump versionSimon Hengel2012-12-071-1/+1
| |
| * Rename html-test/runtests.lhs to html-test/run.lhsSimon Hengel2012-10-151-2/+2
| |
| * Add 'dev' flag to cabal file, that builds without -O2Simon Hengel2012-10-151-2/+16
| | | | | | | | | | That way --disable-optimization can be used, which decreases build time considerably.
| * Make test management scripts more robustSimon Hengel2012-10-151-2/+2
| | | | | | | | | | | | | | * They are now independent from the current directory, and hence can be called from everywhere * On UNIX/Linux they can now be run as scripts
| * Move unit tests to /test directorySimon Hengel2012-10-151-2/+2
| |
| * Move HTML tests to directory /html-test/Simon Hengel2012-10-151-3/+3
| |
| * Move resources to /resources directorySimon Hengel2012-10-151-13/+13
| |
| * Allow haddock markup in deprecation messagesSimon Hengel2012-10-141-0/+1
| |
| * Organize unite tests hierarchicallySimon Hengel2012-10-141-1/+1
| |
| * Bump versionSimon Hengel2012-10-111-1/+1
| |
| * Require ghc 7.6Simon Hengel2012-10-111-2/+2
| |
| * Adapt cabal fileSimon Hengel2012-10-111-20/+0
| |
| * Bump versionSimon Hengel2012-10-101-1/+1
| |
| * Depend on library for executableSimon Hengel2012-10-041-51/+47
| | | | | | | | | | | | | | The main motivation for this is to increase build speed. In GHC's source tree the library is not build, but all modules are now required for the executable, so that GHC's validate will now detect build failures for the library.
| * Export Haddock's main entry point from librarySimon Hengel2012-10-041-2/+4
| |
| * Remove trailing whitespace from cabal fileSimon Hengel2012-10-041-3/+3
| |
| * Fix typoSimon Hengel2012-10-041-1/+1
| |
| * Remove redundant dependency from cabal fileSimon Hengel2012-10-031-2/+0
| |
| * Remove test flag from cabal fileSimon Hengel2012-10-011-12/+0
| | | | | | | | This was not really used.
| * Add test-suite section for parsetests to cabal fileSimon Hengel2012-10-011-0/+28
| | | | | | | | + get rid of HUnit dependency
| * Add missing dependency to librarySimon Hengel2012-08-251-0/+1
| |
| * Improve haddock memory usageIan Lynagh2012-08-131-0/+1
| |
| * Bump version number.David Waern2012-07-231-1/+1
| |
| * Merge branch 'dev' of https://github.com/sol/haddock into ghc-7.6David Waern2012-07-231-4/+0
| |\ | | | | | | | | | | | | Conflicts: src/Haddock/InterfaceFile.hs
| | * Use LANGUAGE pragmas instead of default-extensions in cabal fileSimon Hengel2012-05-271-4/+0
| | |
| * | Update dependencies.Paolo Capriotti2012-07-201-2/+2
| | |
* | | Update dependenciesIan Lynagh2012-11-301-2/+2
| | |
* | | Improve haddock memory usageIan Lynagh2012-08-131-0/+1
| | |
* | | Build with GHC 7.7Ian Lynagh2012-07-201-2/+2
|/ /
* | Forward port changes from stable.Paolo Capriotti2012-07-191-3/+3
|\|
| * Bump version number.David Waern2012-05-161-1/+1
| |
| * Require ghc >= 7.4.David Waern2012-02-011-2/+2
| |
* | Follow changes in baseIan Lynagh2012-06-191-2/+2
|/
* Merge ../ghc/utils/haddockDavid Waern2011-12-271-6/+12
|\
| * Merge ../../../haddockDavid Waern2011-12-271-2/+0
| |\ | | | | | | | | | | | | Conflicts: src/Haddock/InterfaceFile.hs
| * | Fix (untested) building from source tarball without alex/happyIan Lynagh2011-12-181-2/+8
| | | | | | | | | | | | | | | haddock's .cabal file was declaring that it needed alex and happy to build, but in the GHC source tarballs it doesn't.
| * | Update dependencies and binaryInterfaceVersionIan Lynagh2011-12-121-4/+4
| | |