packages feed

bibtex 0.1.0.4 → 0.1.0.5

raw patch · 4 files changed

+8/−7 lines, 4 filesdep ~Cabal

Dependency ranges changed: Cabal

Files

Makefile view
@@ -41,5 +41,6 @@ 	wget -O - http://hackage.haskell.org/packages/archive/00-index.tar.gz \ 	   | gunzip \ 	   | ./dist/build/hackage-bibtex/hackage-bibtex \-	   | ssh code.haskell.org tee /home/thielema/public_html/bibtex/hackage.bib \+	   | xz \+	   | ssh code.haskell.org tee /home/thielema/public_html/bibtex/hackage.bib.xz \ 	   > /dev/null
bibtex.cabal view
@@ -1,5 +1,5 @@ Name:             bibtex-Version:          0.1.0.4+Version:          0.1.0.5 License:          BSD3 License-File:     LICENSE Author:           Henning Thielemann <haskell@henning-thielemann.de>@@ -76,7 +76,7 @@   location: http://code.haskell.org/~thielema/bibtex/  Source-Repository this-  tag:      0.1.0.4+  tag:      0.1.0.5   type:     darcs   location: http://code.haskell.org/~thielema/bibtex/ @@ -120,7 +120,7 @@   If flag(buildExamples)     Build-Depends:       old-time >=1.0 && <1.2,-      Cabal >=1.6 && <1.20,+      Cabal >=1.6 && <1.24,       tar >=0.3 && <0.5,       utf8-string >=0.3.4 && <0.4,       bytestring >=0.9 && <0.11
publications/publications.bib view
@@ -59,7 +59,7 @@  @PhdThesis{thielemann2006diss,   author =	 {Thielemann, Henning},-  title =	 {Equivalence of Foo and Bar with respect to $\|.\|$},+  title =	 {Equivalence of Foo and Bar with respect to $\|.\|$ and \[\alpha\]},   school =	 {University of Applied Irrelevance},   year =	 2006,   month =	 {March}@@ -67,7 +67,7 @@  @Misc{thielemann2010bibtex,   key =		 {haskell, bibtex, natbib},-  author =	 {Thielemann, Henning},+  author =	 {Thielemann, Henning and others},   title =	 {BibTeX parsing and generation},   howpublished = {\url{http://hackage.haskell.org/package/bibtex}},   subtype =	 {program},
src/Text/BibTeX/Parse.hs view
@@ -151,7 +151,7 @@       (char '{') (texSequence '}') (char '}') <|>    sequence       [char '\\',-       oneOf "_{}$|'`^&%\".,~# " <|> letter] <|>+       oneOf "_{}[]$|'`^&%\".,~# " <|> letter] <|>    fmap (:[]) (noneOf [closeChar])