{"bugs":[],"categories":[{"categoryid":433,"name":"dev-haskell","summary":"The dev-haskell category contains libraries and utilities relevant to the Haskell programming language."},{"categoryid":450,"name":"dev-lang","summary":"The dev-lang category contains various programming language implementations and related tools."},{"categoryid":311,"name":"dev-vcs","summary":"The dev-vcs category contains utilities focused on version control."}],"changelog":[{"authoremail":"repomirrorci@gentoo.org","authorname":"Repository mirror & CI","commitid":"7090584d7f460e325f28f123ca098f0446fbb6d1","committime":"2026-06-22T10:46:04","packageid":79221,"repoid":1,"summary":"Merge updates from master"},{"authoremail":"gienah@gentoo.org","authorname":"Mark Wright","body":"Signed-off-by: Mark Wright <gienah@gentoo.org>","commitid":"27da8ca6c34e4365dee4197587cc588365061c97","committime":"2026-06-22T07:47:30","packageid":79221,"repoid":1,"summary":"dev-haskell\/servant-client-core: Add for dev-vcs\/git-annex"}],"dependencies":[{"block":false,"categoryid":433,"description":"Colourise Haskell code","ebuildids":[903095],"firstseen":"2010-05-04T00:54:45.661860","maintainer":"haskell@gentoo.org","name":"hscolour","packageid":45677},{"block":false,"categoryid":433,"description":"A framework for packaging Haskell software","ebuildids":[903095],"firstseen":"2010-05-04T00:54:45.661860","maintainer":"haskell@gentoo.org","name":"cabal","packageid":47777},{"block":false,"categoryid":433,"description":"Automatic testing of Haskell programs","ebuildids":[903095,903095],"firstseen":"2010-05-04T00:54:45.661860","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"quickcheck","packageid":53163},{"block":false,"categoryid":450,"description":"The Glasgow Haskell Compiler","ebuildids":[903095],"firstseen":"2010-05-04T00:54:45.661860","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"ghc","packageid":55607},{"block":false,"categoryid":433,"description":"An efficient packed Unicode text type","ebuildids":[903095,903095],"firstseen":"2011-06-12T14:37:46.618061","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"text","packageid":57517},{"block":false,"categoryid":433,"description":"Fast base64 encoding and decoding for ByteStrings","ebuildids":[903095,903095],"firstseen":"2012-03-11T14:36:05.340208","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"base64-bytestring","packageid":58995},{"block":false,"categoryid":433,"description":"Library of safe (exception free) functions","ebuildids":[903095,903095],"firstseen":"2013-06-20T13:36:19.990577","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"safe","packageid":60890,"summary":"Partial functions from the base library, such as @head@ and @!!@, modified to return more descriptive error messages, programmer defined error messages, @Maybe@ wrapped results and default values. These functions can be used to reduce the number of unsafe pattern matches in your code."},{"block":false,"categoryid":433,"description":"A compatibility layer for base","ebuildids":[903095,903095],"firstseen":"2013-06-21T13:36:39.860472","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"base-compat","packageid":60901},{"block":false,"categoryid":433,"description":"A Testing Framework for Haskell","ebuildids":[903095,903095],"firstseen":"2013-06-21T13:36:39.860472","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"hspec","packageid":60905},{"block":false,"categoryid":433,"description":"Fast JSON parsing and encoding","ebuildids":[903095,903095],"firstseen":"2013-08-25T13:36:10.575757","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"aeson","packageid":61153},{"block":false,"categoryid":433,"description":"Generic HTTP types for Haskell (for both client and server code)","ebuildids":[903095,903095],"firstseen":"2013-08-26T13:37:27.441553","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"http-types","packageid":61227},{"block":false,"categoryid":433,"description":"Monads for free","ebuildids":[903095,903095],"firstseen":"2013-12-11T14:37:42.561780","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"free","packageid":61682},{"block":false,"categoryid":433,"description":"URI manipulation","ebuildids":[903095,903095],"firstseen":"2014-12-14T14:38:50.624882","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"network-uri","packageid":62921},{"block":false,"categoryid":433,"description":"Constraint manipulation","ebuildids":[903095,903095],"firstseen":"2015-03-11T14:50:36.641907","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"constraints","packageid":63210},{"block":false,"categoryid":433,"description":"True Sums of Products","ebuildids":[903095,903095],"firstseen":"2020-08-01T09:48:37.202645","name":"sop-core","packageid":71820,"summary":"Implementation of n-ary sums and n-ary products. The module \"Data.SOP\" is the main module of this library and contains more detailed documentation. The main use case of this package is to serve as the core of https:\/\/hackage.haskell.org\/package\/generics-sop generics-sop A detailed description of the ideas behind this library is provided by the paper: * Edsko de Vries and Andres Löh. http:\/\/www.andres-loeh.de\/TrueSumsOfProducts True Sums of Products Workshop on Generic Programming (WGP) 2014."},{"block":false,"categoryid":433,"description":"Processing HTTP Content-Type and Accept headers","ebuildids":[903095,903095],"firstseen":"2022-07-22T23:44:09.060532","name":"http-media","packageid":75210,"summary":"This library is intended to be a comprehensive solution to parsing and selecting quality-indexed values in HTTP headers. It is capable of parsing both media types and language parameters from the Accept and Content header families, and can be extended to match against other accept headers as well. Selecting the appropriate header value is achieved by comparing a list of server options against the quality-indexed values supplied by the client. In the following example, the Accept header is parsed and then matched against a list of server options to serve the appropriate media using 'mapAcceptMedia': > getHeader >>= maybe send406Error sendResourceWith . mapAcceptMedia > [ (\"text\/html\", asHtml) > , (\"application\/json\", asJson) > ] Similarly, the Content-Type header can be used to produce a parser for request bodies based on the given content type with 'mapContentMedia': > getContentType >>= maybe send415Error readRequestBodyWith . mapContentMedia > [ (\"application\/json\", parseJson) > , (\"text\/plain\", parseText) > ] The API is agnostic to your choice of server."},{"block":false,"categoryid":433,"description":"A family of combinators for defining webservices APIs","ebuildids":[903095],"firstseen":"2022-07-22T23:44:09.060532","name":"servant","packageid":75218}],"depending":[{"block":false,"categoryid":311,"description":"manage files with git, without checking their contents into git","ebuildids":[903209,903209],"firstseen":"2011-12-05T14:37:08.128479","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"git-annex","packageid":58252},{"block":false,"categoryid":433,"description":"Automatic derivation of querying functions for servant","ebuildids":[903094,903094,903094,903094],"firstseen":"2026-06-22T11:57:30.836959","name":"servant-client","packageid":79220}],"ebuilds":[{"archs":["~amd64","~arm64","~ppc64","~riscv","~x86"],"ebuildid":903095,"firstseen":"2026-06-22T11:57:30.836959","license":"BSD","moddate":"2026-06-22T10:57:30","packageid":79221,"repoid":1,"slot":"0\/0.20.2","uses":["doc","hscolour","profile","test"],"version":"0.20.2"}],"masks":[],"package":{"categoryid":433,"description":"Core functionality and class for client function generation for servant APIs","firstseen":"2026-06-22T11:57:30.836959","name":"servant-client-core","packageid":79221},"rdependencies":[{"block":false,"categoryid":450,"description":"The Glasgow Haskell Compiler","ebuildids":[903095,903095],"firstseen":"2010-05-04T00:54:45.661860","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"ghc","packageid":55607},{"block":false,"categoryid":433,"description":"An efficient packed Unicode text type","ebuildids":[903095,903095],"firstseen":"2011-06-12T14:37:46.618061","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"text","packageid":57517},{"block":false,"categoryid":433,"description":"Fast base64 encoding and decoding for ByteStrings","ebuildids":[903095,903095],"firstseen":"2012-03-11T14:36:05.340208","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"base64-bytestring","packageid":58995},{"block":false,"categoryid":433,"description":"Library of safe (exception free) functions","ebuildids":[903095,903095],"firstseen":"2013-06-20T13:36:19.990577","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"safe","packageid":60890,"summary":"Partial functions from the base library, such as @head@ and @!!@, modified to return more descriptive error messages, programmer defined error messages, @Maybe@ wrapped results and default values. These functions can be used to reduce the number of unsafe pattern matches in your code."},{"block":false,"categoryid":433,"description":"A compatibility layer for base","ebuildids":[903095,903095],"firstseen":"2013-06-21T13:36:39.860472","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"base-compat","packageid":60901},{"block":false,"categoryid":433,"description":"Fast JSON parsing and encoding","ebuildids":[903095,903095],"firstseen":"2013-08-25T13:36:10.575757","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"aeson","packageid":61153},{"block":false,"categoryid":433,"description":"Generic HTTP types for Haskell (for both client and server code)","ebuildids":[903095,903095],"firstseen":"2013-08-26T13:37:27.441553","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"http-types","packageid":61227},{"block":false,"categoryid":433,"description":"Monads for free","ebuildids":[903095,903095],"firstseen":"2013-12-11T14:37:42.561780","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"free","packageid":61682},{"block":false,"categoryid":433,"description":"URI manipulation","ebuildids":[903095,903095],"firstseen":"2014-12-14T14:38:50.624882","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"network-uri","packageid":62921},{"block":false,"categoryid":433,"description":"Constraint manipulation","ebuildids":[903095,903095],"firstseen":"2015-03-11T14:50:36.641907","maintainer":"haskell@gentoo.org","maintainername":"Gentoo Haskell","name":"constraints","packageid":63210},{"block":false,"categoryid":433,"description":"True Sums of Products","ebuildids":[903095,903095],"firstseen":"2020-08-01T09:48:37.202645","name":"sop-core","packageid":71820,"summary":"Implementation of n-ary sums and n-ary products. The module \"Data.SOP\" is the main module of this library and contains more detailed documentation. The main use case of this package is to serve as the core of https:\/\/hackage.haskell.org\/package\/generics-sop generics-sop A detailed description of the ideas behind this library is provided by the paper: * Edsko de Vries and Andres Löh. http:\/\/www.andres-loeh.de\/TrueSumsOfProducts True Sums of Products Workshop on Generic Programming (WGP) 2014."},{"block":false,"categoryid":433,"description":"Processing HTTP Content-Type and Accept headers","ebuildids":[903095,903095],"firstseen":"2022-07-22T23:44:09.060532","name":"http-media","packageid":75210,"summary":"This library is intended to be a comprehensive solution to parsing and selecting quality-indexed values in HTTP headers. It is capable of parsing both media types and language parameters from the Accept and Content header families, and can be extended to match against other accept headers as well. Selecting the appropriate header value is achieved by comparing a list of server options against the quality-indexed values supplied by the client. In the following example, the Accept header is parsed and then matched against a list of server options to serve the appropriate media using 'mapAcceptMedia': > getHeader >>= maybe send406Error sendResourceWith . mapAcceptMedia > [ (\"text\/html\", asHtml) > , (\"application\/json\", asJson) > ] Similarly, the Content-Type header can be used to produce a parser for request bodies based on the given content type with 'mapContentMedia': > getContentType >>= maybe send415Error readRequestBodyWith . mapContentMedia > [ (\"application\/json\", parseJson) > , (\"text\/plain\", parseText) > ] The API is agnostic to your choice of server."},{"block":false,"categoryid":433,"description":"A family of combinators for defining webservices APIs","ebuildids":[903095],"firstseen":"2022-07-22T23:44:09.060532","name":"servant","packageid":75218}],"repos":[{"branch":"master","lastcommit":"6b5d3b950bca5a95dcf0465f3fd90af4e0b56767","name":"gentoo","path":"\/usr\/portage","repoid":1,"upstream":"origin"}],"tracked":false,"urls":["https:\/\/docs.servant.dev\/"],"uses":[{"description":"Add extra documentation (API, Javadoc, etc). It is recommended to enable per package instead of globally","isdefault":false,"use":"doc"},{"description":"Include coloured haskell sources to generated documentation (dev-haskell\/hscolour)","isdefault":false,"use":"hscolour"},{"description":"Add support for software performance analysis (will likely vary from ebuild to ebuild)","isdefault":false,"use":"profile"},{"description":"Enable dependencies and\/or preparations necessary to run tests (usually controlled by FEATURES=test but can be toggled independently)","isdefault":false,"use":"test"}]}