Result for 130D52BC90FBAA05812E0F063E75AD7C9EEF0523

Query result

Key Value
FileName./usr/share/doc/libghc-xml-prof/buildinfo_armel.gz
FileSize3055
MD575DBDC8FE35A73FDE61FA029E49925A7
SHA-1130D52BC90FBAA05812E0F063E75AD7C9EEF0523
SHA-25653BD10293B6C939E7975DCEB8E1706665EB84F528F455DC6B1D25DA87EEB82DF
SSDEEP48:XIbQuYrT+u/TAI1flxBX4Sx2eE+bfszVvbV3uHfhe8c+FdbK0jaT4fCKCSfIYB3n:CQuY3+sj1N3bRw7+/hS+Fd7jHfCrY5zD
TLSHT111515DEB72AC3860D57A4632D0111E1886B11F17200E68F5A9BF33193D9C1B4D96CEB2
hashlookup:parent-total12
hashlookup:trust100

Network graph view

Parents (Total: 12)

The searched file hash is included in 12 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
FileSize211918
MD5883EB05A8BC13D6073DF1A51DD22D1E1
PackageDescriptionbasic types for representing XML; profiling libraries The idea is to have a full set of appropriate types, which various XML libraries can share. Instead of having equivalent-but-incompatible types for every binding, parser, or client, they all share the same types can thus interoperate easily. . This library contains complete types for most parts of an XML document, including the prologue, node tree, and doctype. Some basic combinators are included for common tasks, including traversing the node tree and filtering children. . This package provides a library for the Haskell programming language, compiled for profiling. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-xml-types-prof
PackageSectionhaskell
PackageVersion0.3.6-5+b1
SHA-1F7EE7D595C5EA8240267445634048412628D744B
SHA-256EE25DCEC7ED85388095D72095E6B066695B389DE0DE851ADE8DD4E6BEE5514C9
Key Value
FileSize459924
MD5664F2C117231C9B720EA8586C7C00D97
PackageDescriptionalternative parser combinator libraries for Haskell; profiling libraries Alternative parser combinator libraries, including the original HuttonMeijer set. The Poly sets have features like good error reporting, arbitrary token type, running state, lazy parsing, and so on. Finally, Text.Parse is a proposed replacement for the standard Read class, for better deserialisation of Haskell values from Strings. . This package provides a library for the Haskell programming language, compiled for profiling. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-polyparse-prof
PackageSectionhaskell
PackageVersion1.12-3+b1
SHA-12532DFD9E92AC8040A057EDCB55C459C205D865B
SHA-256925F5D80EDF7EB5006C5D7D30E917E141F3C814A469765F42ABEBA3A96B8EE20
Key Value
FileSize435352
MD5D597783DB32D5216E45B55D8B8ADA1AA
PackageDescriptionalternative parser combinator libraries for Haskell Alternative parser combinator libraries, including the original HuttonMeijer set. The Poly sets have features like good error reporting, arbitrary token type, running state, lazy parsing, and so on. Finally, Text.Parse is a proposed replacement for the standard Read class, for better deserialisation of Haskell values from Strings. . This package provides a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-polyparse-dev
PackageSectionhaskell
PackageVersion1.12-3+b1
SHA-1103F8EAFD4FDF0F4DC8F25A22C6D706E63A31391
SHA-256D9B54D88EF659B6E17AF8042A945CFD6C33832A4F20A0CB7C421CEABC17027EB
Key Value
FileSize188852
MD5B5CD750B0A3BF8D896421CCC95DCE296
PackageDescriptionworking with MIME types Codecs for Base64, quoted-printable, and MIME parts. . This package provides a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-mime-dev
PackageSectionhaskell
PackageVersion0.4.0.2-4+b1
SHA-11FC6AFB37AB2A76BF67C4D70B46BB5CC0843721B
SHA-256BCE9BA6B895AE3A11B2C5F62FA0EE52A553117F0FF4822810095F89570B848DE
Key Value
FileSize389628
MD52E84D93C6874DADE71286A4308EC9246
PackageDescriptionmime-type handling types and functions This package provides basic types and functions to handle mime-types. . This package provides a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-mime-types-dev
PackageSectionhaskell
PackageVersion0.1.0.7-3+b1
SHA-1D5BB5461EEC7E1A0882913ED5A087FB10176F239
SHA-256F8DE7F04991D0694A2F00BEE0B62555C6D454E22E18189B8CDE85FED4C3500AA
Key Value
FileSize310982
MD547DF9A68B976845CBF6B56736AB830F7
PackageDescriptionhigh-performance left-fold enumerators; profiling libraries Typical buffer–based incremental I/O is based around a single loop, which reads data from some source (such as a socket or file), transforms it, and generates one or more outputs (such as a line count, HTTP responses, or modified file). Although efficient and safe, these loops are all single–purpose; it is difficult or impossible to compose buffer–based processing loops. . Haskell's concept of "lazy I/O" allows pure code to operate on data from an external source. However, lazy I/O has several shortcomings. Most notably, resources such as memory and file handles can be retained for arbitrarily long periods of time, causing unpredictable performance and error conditions. . Enumerators are an efficient, predictable, and safe alternative to lazy I/O. Discovered by Oleg Kiselyov, they allow large datasets to be processed in near–constant space by pure code. Although somewhat more complex to write, using enumerators instead of lazy I/O produces more correct programs. . This library contains an enumerator implementation for Haskell, designed to be both simple and efficient. Three core types are defined, along with numerous helper functions: . Iteratee: Data sinks, analogous to left folds. Iteratees consume a sequence of input values, and generate a single output value. Many iteratees are designed to perform side effects (such as printing to stdout), so they can also be used as monad transformers. . Enumerator: Data sources, which generate input sequences. Typical enumerators read from a file handle, socket, random number generator, or other external stream. To operate, enumerators are passed an iteratee, and provide that iteratee with input until either the iteratee has completed its computation, or EOF. . Enumeratee: Data transformers, which operate as both enumerators and iteratees. Enumeratees read from an outer enumerator, and provide the transformed data to an inner iteratee. . This package provides a library for the Haskell programming language, compiled for profiling. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-enumerator-prof
PackageSectionhaskell
PackageVersion0.4.20-6+b1
SHA-1E6CE0B1E0D00AF565396517D84CD681C118995DE
SHA-2563F3B72ADD9F7851EF4C2D8710CEA7CC052014002AD09C6E3B7153BB0849FFB98
Key Value
FileSize232740
MD59FC0147224E70226348A254F7BFED2EC
PackageDescriptionbasic types for representing XML The idea is to have a full set of appropriate types, which various XML libraries can share. Instead of having equivalent-but-incompatible types for every binding, parser, or client, they all share the same types can thus interoperate easily. . This library contains complete types for most parts of an XML document, including the prologue, node tree, and doctype. Some basic combinators are included for common tasks, including traversing the node tree and filtering children. . This package provides a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-xml-types-dev
PackageSectionhaskell
PackageVersion0.3.6-5+b1
SHA-1688C44EE5E34AD716AEA385139E82BD6A393EA70
SHA-256748182F9B7F178B4104B6B44ED8D82F7337A2710083BC84432DE64FF1BCE3258
Key Value
FileSize861868
MD50A50947BFDA69976625881055C8A870B
PackageDescriptionmime-type handling types and functions; profiling libraries; profiling libraries This package provides basic types and functions to handle mime-types. . This package provides a library for the Haskell programming language, compiled for profiling. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-mime-types-prof
PackageSectionhaskell
PackageVersion0.1.0.7-3+b1
SHA-1D70AECB384399A880C8D83361C9C845FEBF165CC
SHA-256A56B94B8D6C636B362697EAA77D72C2065C6BEC0A47D84FD2B67BCD2218CA480
Key Value
FileSize296568
MD57997952BC2925F6019EE10A4CB3BB299
PackageDescriptionhigh-performance left-fold enumerators Typical buffer–based incremental I/O is based around a single loop, which reads data from some source (such as a socket or file), transforms it, and generates one or more outputs (such as a line count, HTTP responses, or modified file). Although efficient and safe, these loops are all single–purpose; it is difficult or impossible to compose buffer–based processing loops. . Haskell's concept of "lazy I/O" allows pure code to operate on data from an external source. However, lazy I/O has several shortcomings. Most notably, resources such as memory and file handles can be retained for arbitrarily long periods of time, causing unpredictable performance and error conditions. . Enumerators are an efficient, predictable, and safe alternative to lazy I/O. Discovered by Oleg Kiselyov, they allow large datasets to be processed in near–constant space by pure code. Although somewhat more complex to write, using enumerators instead of lazy I/O produces more correct programs. . This library contains an enumerator implementation for Haskell, designed to be both simple and efficient. Three core types are defined, along with numerous helper functions: . Iteratee: Data sinks, analogous to left folds. Iteratees consume a sequence of input values, and generate a single output value. Many iteratees are designed to perform side effects (such as printing to stdout), so they can also be used as monad transformers. . Enumerator: Data sources, which generate input sequences. Typical enumerators read from a file handle, socket, random number generator, or other external stream. To operate, enumerators are passed an iteratee, and provide that iteratee with input until either the iteratee has completed its computation, or EOF. . Enumeratee: Data transformers, which operate as both enumerators and iteratees. Enumeratees read from an outer enumerator, and provide the transformed data to an inner iteratee. . This package provides a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-enumerator-dev
PackageSectionhaskell
PackageVersion0.4.20-6+b1
SHA-13F2540D6882A562C996C713FB20A5C9A2E806DAA
SHA-25620FC1F1F23A37B69FC8F64528951AFDBFE6F5E92155C6D08474A3CFE6955A2D1
Key Value
FileSize238562
MD523094795A57462BD557C97D162D7B304
PackageDescriptionA simple Haskell XML library; profiling libraries This library provides lightweight tools to parse, filter and generate XML. . This package provides a library for the Haskell programming language, compiled for profiling. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-xml-prof
PackageSectionhaskell
PackageVersion1.3.14-6+b1
SHA-15B9FCCAA2729FD2563B83AC4CD350272AF31011A
SHA-256A834E79707B35549EBE95F0D75ABE871C41C2C734AA27A712228EB73EED6890E
Key Value
FileSize203690
MD53DB8E00B718AA2C18C8C4EA745B6BE60
PackageDescriptionworking with MIME types; profiling libraries Codecs for Base64, quoted-printable, and MIME parts. . This package provides a library for the Haskell programming language, compiled for profiling. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-mime-prof
PackageSectionhaskell
PackageVersion0.4.0.2-4+b1
SHA-1D3485E2F83D86AE608F892A724C0000AB76A2A9B
SHA-2561093014F4678DBB04C0F4C58BEAB2ACEAA75F470ADDCD17DE34456BFB6D5372E
Key Value
FileSize258922
MD5C70F8DF2D8906F0FB48BD623EE767BEB
PackageDescriptionA simple Haskell XML library This library provides lightweight tools to parse, filter and generate XML. . This package provides a library for the Haskell programming language. See http://www.haskell.org/ for more information on Haskell.
PackageMaintainerDebian Haskell Group <pkg-haskell-maintainers@lists.alioth.debian.org>
PackageNamelibghc-xml-dev
PackageSectionhaskell
PackageVersion1.3.14-6+b1
SHA-121319A63899B4264896BE02DDF3932D430838691
SHA-256B0762605F5D02FDEC37A75696A31E5CA645761C5F654CA5CE65F746F99FD5B7A