haskell-language-haskell-extract 0.2.4-9build1 source package in Ubuntu

Changelog

haskell-language-haskell-extract (0.2.4-9build1) eoan; urgency=medium

  * Rebuild against new GHC abi.

 -- Gianfranco Costamagna <email address hidden>  Sat, 03 Aug 2019 17:55:36 +0200

Upload details

Uploaded by:
Gianfranco Costamagna
Uploaded to:
Eoan
Original maintainer:
Debian Haskell Group
Architectures:
any all
Section:
haskell
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe haskell

Downloads

File Size SHA-256 Checksum
haskell-language-haskell-extract_0.2.4.orig.tar.gz 2.4 KiB 14da16e56665bf971723e0c5fd06dbb7cc30b4918cf8fb5748570785ded1acdb
haskell-language-haskell-extract_0.2.4-9build1.debian.tar.xz 3.2 KiB e1a68d965ed707944b5f2aa31af33441339c09b540d44d37b93116eb4dadcff9
haskell-language-haskell-extract_0.2.4-9build1.dsc 2.6 KiB e41dce442c4ba80ed7e97f99540f6cd01e1795304d99dbd0c98c09f8c632331c

View changes file

Binary packages built by this source

libghc-language-haskell-extract-dev: No summary available for libghc-language-haskell-extract-dev in ubuntu groovy.

No description available for libghc-language-haskell-extract-dev in ubuntu groovy.

libghc-language-haskell-extract-doc: automatically extract functions from the local code.; documentation

 language-haskell-extract contains some useful helper functions on top of
 Template Haskell.
 functionExtractor extracts all functions after a regexp-pattern.
 .
 > foo = "test"
 > boo = "testing"
 > bar = $(functionExtractor "oo$")
 .
 will automagically extract the functions ending with "oo" such as
 .
 > bar = [("foo",foo), ("boo",boo)]
 .
 This can be useful if you wish to extract all functions beginning with test
 (for a test-framework) or all functions beginning with wc (for a web service).
 .
 functionExtractorMap works like functionsExtractor but applies a function
 over all function-pairs.
 This functions is useful if the common return type of the functions is
 a type class.
 .
 This package contains the documentation files.

libghc-language-haskell-extract-prof: automatically extract functions from the local code.; profiling libraries

 language-haskell-extract contains some useful helper functions on top of
 Template Haskell.
 functionExtractor extracts all functions after a regexp-pattern.
 .
 > foo = "test"
 > boo = "testing"
 > bar = $(functionExtractor "oo$")
 .
 will automagically extract the functions ending with "oo" such as
 .
 > bar = [("foo",foo), ("boo",boo)]
 .
 This can be useful if you wish to extract all functions beginning with test
 (for a test-framework) or all functions beginning with wc (for a web service).
 .
 functionExtractorMap works like functionsExtractor but applies a function
 over all function-pairs.
 This functions is useful if the common return type of the functions is
 a type class.
 .
 This package contains the libraries compiled with profiling enabled.