| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: ghc-attoparsec-devel | Distribution: openSUSE Tumbleweed |
| Version: 0.14.1 | Vendor: openSUSE |
| Release: 1.4 | Build date: Tue Jun 1 12:12:58 2021 |
| Group: Unspecified | Build host: armbuild02 |
| Size: 13316275 | Source RPM: ghc-attoparsec-0.14.1-1.4.src.rpm |
| Packager: http://bugs.opensuse.org | |
| Url: https://hackage.haskell.org/package/attoparsec | |
| Summary: Haskell attoparsec library development files | |
This package provides the Haskell attoparsec library development files.
BSD-3-Clause
* Tue Mar 23 2021 psimons@suse.com
- Update attoparsec to version 0.14.1.
0.14.1
* Added `Data.Attoparsec.ByteString.getChunk`.
0.14.0
* Added `Data.Attoparsec.ByteString.takeWhileIncluding`.
* Make `Data.Attoparsec.{Text,ByteString}.Lazy.parseOnly` accept lazy input.
* Wed Mar 03 2021 psimons@suse.com
- Update attoparsec to version 0.13.2.5 revision 1.
Upstream has revised the Cabal build instructions on Hackage.
* Wed Feb 10 2021 psimons@suse.com
- Update attoparsec to version 0.13.2.5.
Upstream has not updated the file "changelog.md" since the last
release.
* Thu Dec 17 2020 Ondřej Súkup <mimi.vx@gmail.com>
- disable %{ix86} build
* Tue Sep 22 2020 psimons@suse.com
- Update attoparsec to version 0.13.2.4 revision 1.
Upstream has revised the Cabal build instructions on Hackage.
* Tue Aug 18 2020 Peter Simons <psimons@suse.com>
- Replace %setup -q with the more modern %autosetup macro.
* Tue Jun 16 2020 Peter Simons <psimons@suse.com>
- Re-generate file with latest version of spec-cleaner.
* Wed May 06 2020 psimons@suse.com
- Update attoparsec to version 0.13.2.4.
Upstream has not updated the file "changelog.md" since the last
release.
* Fri Nov 08 2019 Peter Simons <psimons@suse.com>
- Drop obsolete group attributes.
* Sun Sep 01 2019 psimons@suse.com
- Update attoparsec to version 0.13.2.3.
Upstream has not updated the file "changelog.md" since the last
release.
* Tue Jun 11 2019 Peter Simons <psimons@suse.com>
- Update Cabal file for more accurate build dependencies.
* Sat Oct 20 2018 Peter Simons <psimons@suse.com>
- Update Cabal build instructions to support ghc-8.6.1.
* Wed Jul 18 2018 psimons@suse.com
- Cosmetic: replace tabs with blanks, strip trailing white space,
and update copyright headers with spec-cleaner.
* Mon May 14 2018 psimons@suse.com
- Update attoparsec to version 0.13.2.2.
* Improved performance of `Data.Attoparsec.Text.asciiCI`
* `pure` is now strict in `Position`
* Thu Aug 03 2017 psimons@suse.com
- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
* Mon Sep 26 2016 psimons@suse.com
- Update to version 0.13.1.0 with cabal2obs.
* Sun Jul 10 2016 psimons@suse.com
- Update to version 0.13.0.2 revision 0 with cabal2obs.
* Tue Apr 26 2016 mimi.vx@gmail.com
- update to 0.13.0.2
- remove useless _service
* Restore the fast specialised character set implementation for Text
* Move testsuite from test-framework to tasty
* Performance optimization of takeWhile and takeWhile1
* Mon Sep 28 2015 mimi.vx@gmail.com
- update to 0.13.0.1
* Fixed a bug in the implementations of inClass and notInClass for Text
* Made the parser type in the Zepto module a monad transformer.
* Mon Apr 13 2015 mimi.vx@gmail.com
- update to 0.12.1.6
* Fixed a case folding bug in the ByteString version of stringCI.
* Fixed an indexing bug in the new Text implementation of string,
reported by Michel Boucey.
* Fixed a case where the string parser would consume an unnecessary
amount of input before failing a match, when it could bail much
earlier (https://github.com/bos/attoparsec/issues/97)
* Added more context to error messages
(https://github.com/bos/attoparsec/pull/79)
* Fixed incorrect tracking of Text lengths
(https://github.com/bos/attoparsec/issues/80)
* Fixed the incorrect tracking of capacity if the initial buffer was
empty (https://github.com/bos/attoparsec/issues/75)
* Fixed a data corruption bug that occurred under some circumstances
if a buffer grew after prompting for more input
(https://github.com/bos/attoparsec/issues/74)
* Now compatible with GHC 7.9
* Reintroduced the Chunk class, used by the parsers package
* A new internal representation makes almost all real-world parsers
faster, sometimes by big margins. For example, parsing JSON data
with aeson is now up to 70% faster. These performance improvements
also come with reduced memory consumption and some new capabilities.
* The new match combinator gives both the result of a parse and the
input that it matched.
* The test suite has doubled in size. This made it possible to switch
to the new internal representation with a decent degree of
confidence that everything was more or less working.
* The benchmark suite now contains a small family of benchmarks taken
from real-world uses of attoparsec.
* A few types that ought to have been private now are.
* A few obsolete modules and functions have been marked as deprecated.
They will be removed from the next major release.
* New function scientific is compatible with rational, but parses
integers more efficiently (https://github.com/bos/aeson/issues/198)
* The new Chunk typeclass allows for some code sharing with Ed
Kmett's parsers package: http://hackage.haskell.org/package/parsers
* New function runScanner generalises scan to return the final state
of the scanner as well as the input consumed.
* New dependency: the scientific package. This allows us to parse
numbers much more efficiently.
* peekWord8', peekChar': new primitive parsers that allow
single-character lookahead.
* Tue Sep 02 2014 peter.trommler@ohm-hochschule.de
- regenerate spec file
* Sat Aug 23 2014 peter.trommler@ohm-hochschule.de
- enable PowerPC builds
* Tue May 21 2013 peter.trommler@ohm-hochschule.de
- expand macro in name tag
* Mon May 06 2013 peter.trommler@ohm-hochschule.de
- more transparent packaging (fewer macros)
* Mon Feb 04 2013 peter.trommler@ohm-hochschule.de
- update to 0.10.4.0 from upstream (no changelog)
- fixes bugs and performance issues
- currently under consideration for inclusion in Haskell Platform
* Sat Jun 09 2012 peter.trommler@ohm-hochschule.de
- package LICENSE file
- add copyright notice
* Fri Mar 02 2012 peter.trommler@ohm-hochschule.de
- initial packaging
/usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Buffer.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Buffer.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Buffer.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Char8.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Char8.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Char8.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/FastSet.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/FastSet.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/FastSet.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Internal.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Internal.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Internal.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Lazy.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Lazy.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/ByteString/Lazy.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Char8.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Char8.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Char8.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Combinator.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Combinator.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Combinator.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal/Compat.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal/Compat.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal/Compat.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal/Fhthagn.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal/Fhthagn.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal/Fhthagn.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal/Types.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal/Types.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Internal/Types.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Lazy.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Lazy.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Lazy.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Number.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Number.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Number.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/Buffer.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/Buffer.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/Buffer.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/FastSet.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/FastSet.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/FastSet.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/Internal.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/Internal.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/Internal.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/Lazy.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/Lazy.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Text/Lazy.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Types.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Types.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Types.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Zepto.dyn_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Zepto.hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/Data/Attoparsec/Zepto.p_hi /usr/lib/ghc-8.10.4/attoparsec-0.14.1/libHSattoparsec-0.14.1-804QTg1FAeEAO9ZgVa87w2.a /usr/lib/ghc-8.10.4/attoparsec-0.14.1/libHSattoparsec-0.14.1-804QTg1FAeEAO9ZgVa87w2_p.a /usr/lib/ghc-8.10.4/package.conf.d/attoparsec-0.14.1.conf /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1 /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-ByteString-Char8.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-ByteString-Lazy.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-ByteString.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-Char8.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-Combinator.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-Internal-Types.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-Internal.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-Lazy.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-Number.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-Text-Lazy.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-Text.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-Types.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec-Zepto.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/Data-Attoparsec.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/attoparsec.haddock /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/attoparsec.txt /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/doc-index.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/haddock-bundle.min.js /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/index.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/linuwial.css /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/meta.json /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/quick-jump.css /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.ByteString.Buffer.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.ByteString.Char8.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.ByteString.FastSet.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.ByteString.Internal.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.ByteString.Lazy.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.ByteString.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Char8.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Combinator.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Internal.Compat.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Internal.Fhthagn.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Internal.Types.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Internal.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Lazy.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Number.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Text.Buffer.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Text.FastSet.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Text.Internal.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Text.Lazy.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Text.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Types.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.Zepto.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/Data.Attoparsec.html /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/highlight.js /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/src/style.css /usr/share/doc/ghc-8.10.4/html/libraries/attoparsec-0.14.1/synopsis.png /usr/share/doc/packages/ghc-attoparsec-devel /usr/share/doc/packages/ghc-attoparsec-devel/README.markdown /usr/share/doc/packages/ghc-attoparsec-devel/changelog.md /usr/share/doc/packages/ghc-attoparsec-devel/examples /usr/share/doc/packages/ghc-attoparsec-devel/examples/Atto_RFC2616.hs /usr/share/doc/packages/ghc-attoparsec-devel/examples/Makefile /usr/share/doc/packages/ghc-attoparsec-devel/examples/Parsec_RFC2616.hs /usr/share/doc/packages/ghc-attoparsec-devel/examples/RFC2616.hs /usr/share/doc/packages/ghc-attoparsec-devel/examples/rfc2616.c
Generated by rpm2html 1.8.1
Fabrice Bellet, Fri Oct 24 23:22:36 2025