Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
7.0.4 18 Feb 2012 17:32:38 |
pgj |
Shakespeare is a template family for type-safe, efficient templates with
simple variable interpolation. Shakespeare templates can be used inline
with a quasi-quoter or in an external file. Shakespeare interpolates
variables according to the type being inserted. In this case, the
variable type needs a ToJavascript instance.
There is also shakespeare-coffeescript for coffeescript templates.
Coffescript is a language that compiles down to javascript. It expects
a coffeescript compiler in your path, and variable should be a ToCoffee
instance.
WWW: http://www.yesodweb.com/book/templates
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:30:46 |
pgj |
This package uses the same approach of type-safe URLs to create
translated content. It has a simple syntax for translators, while
allowing the ful power of Haskell for applying complex grammar rules.
WWW: http://www.yesodweb.com/book/i18n
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:28:38 |
pgj |
Shakespeare is a template family for type-safe, efficient templates with
simple variable interpolation. Shakespeare templates can be used inline
with a quasi-quoter or in an external file. Shakespeare interpolates
variables according to the type being inserted. In this case, the
variable type needs a ToCss instance.
This package contains 2 CSS template languages. The Cassius language
uses whitespace to avoid the need for closing brackets and semi-colons.
Lucius does not care about whitespace and is a strict superset of CSS.
There are also some significant conveniences added for CSS.
WWW: http://www.yesodweb.com/book/templates
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:26:15 |
pgj |
This library provides just the general interface and helper functions.
You must use a specific backend in order to make this useful.
WWW: http://www.yesodweb.com/book/persistent
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:24:14 |
pgj |
This library provides just the general interface and helper functions.
You must use a specific backend in order to make this useful.
WWW: http://www.yesodweb.com/book/persistent
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:21:20 |
pgj |
Useful for stuff like database connection pools.
WWW: http://www.yesodweb.com/book/persistent
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:18:34 |
pgj |
Components of paths.
WWW: http://github.com/snoyberg/path-pieces
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:15:46 |
pgj |
This package provides some high-level datatypes for declaring MIME email
messages, functions for automatically composing these into bytestrings,
and the ability to send bytestrings via the sendmail executable. You
can also use any other library you wish to send via different methods,
eg directly to SMTP.
WWW: http://github.com/snoyberg/mime-mail
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:13:17 |
pgj |
Hamlet gives you a type-safe tool for generating HTML code. It works
via Quasi-Quoting, and generating extremely efficient output code. The
syntax is white-space sensitive, and it helps you avoid cross-site
scripting issues and 404 errors.
WWW: http://www.yesodweb.com/book/templates
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:11:03 |
pgj |
Shakespeare is a template family for type-safe, efficient templates with
simple variable interpolation. Shakespeare templates can be used inline
with a quasi-quoter or in an external file. Shakespeare interpolates
variables according to the type being inserted.
WWW: http://www.yesodweb.com/book/templates
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:08:24 |
pgj |
A fast logging system.
WWW: http://hackage.haskell.org/package/fast-logger
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:04:33 |
pgj |
Validating an email address string against RFC 5322.
WWW: http://porg.es/blog/email-address-validation-simpler-faster-more-correct
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 17:01:42 |
pgj |
Ranges and some functions allowing things like fast membership lookup on
ranges with holes in them and so on.
WWW: http://hackage.haskell.org/package/ranges
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:59:01 |
pgj |
Provides high-level conversions based on the data-object package.
Parsing and emitting is handled by the yaml package, which in turn uses
the libyaml C library.
WWW: http://github.com/snoyberg/data-object-yaml
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:56:17 |
pgj |
Provides support for parsing and emitting Yaml documents.
This package includes the full libyaml C library version 0.1.2 by Kirill
Simonov in the package so you don't need to worry about any non-Haskell
dependencies.
WWW: http://github.com/snoyberg/yaml/
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:53:34 |
pgj |
These objects show up in different places, e.g. JSON, Yaml. By
providing a representation in a separate repository, other libraries can
share a single representation of these structures.
WWW: http://github.com/snoyberg/data-object/tree/master
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:51:17 |
pgj |
HTTP cookie parsing and rendering.
WWW: http://github.com/snoyberg/cookie
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:48:46 |
pgj |
This is a port of John Goerzen's convertible package, intended to
distinguish between conversions which are guaranteed to succeed and
those which might fail. It uses the attempt package, which in turn uses
the failure package, so that this package is fully compatible with the
failure framework.
This package currently contains all of the typeclasses and instances for
convertible. However, as these features are ported to the convertible
package, this package will be left with only the instances for
converting to and from text types (String, ByteString (lazy and strict)
and Text (lazy and strict).
Be aware that conversions to and from bytestrings assume UTF-8 encoding.
If a different encoding is desired, you can use a newtype wrapper and
declare an instance of ConvertAttempt or ConvertSuccess on it.
WWW: http://github.com/snoyberg/convertible/tree/text
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:46:00 |
pgj |
Monad transformer for attempt.
WWW: http://github.com/snoyberg/control-monad-attempt
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:43:12 |
pgj |
This package is for working with native byte-ordering of the system.
WWW: http://community.haskell.org/~aslatter/code/byteorder
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:40:40 |
pgj |
Focus is on third-party authentication methods, such as OpenID, rpxnow
and Facebook.
WWW: http://github.com/yesodweb/authenticate
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:36:34 |
pgj |
This package provides parsing and rendering functions for XML. It is
based on the datatypes found in the xml-types package. This package is
broken up into the following modules:
* Text.XML: DOM-based parsing and rendering. This is the most commonly
used module.
* Text.XML.Cursor: A wrapper around Text.XML which allows bidirectional
traversing of the DOM, similar to XPath.
* Text.XML.Unresolved: A slight modification to Text.XML which does not
require all entities to be resolved at parsing. The datatypes are
slightly more complicated here, and therefore this module is only
recommended when you need to deal directly with raw entities.
* Text.XML.Stream.Parse: Streaming parser, including some streaming
parser combinators.
* Text.XML.Stream.Render: Streaming renderer.
WWW: http://github.com/snoyberg/xml
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:30:09 |
pgj |
The xml-types package.
WWW: http://hackage.haskell.org/package/xml-type
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:27:14 |
pgj |
This package uses attoparsec for parsing the actual contents of the HTTP
connection. It also provides higher-level functions which allow you to
avoid direct usage of enumerators.
WWW: http://github.com/snoyberg/http-enumerator
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:24:24 |
pgj |
A set of extra definitions, default values and helpers for the tls
package.
WWW: http://github.com/vincenthz/hs-tls-extra
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:23:00 |
pgj |
Native Haskell TLS and SSL protocol implementation for server and
client.
This provides a high-level implementation of a sensitive security
protocol, eliminating a common set of security issues through the use of
the advanced type system, high level constructions and common Haskell
features.
Currently implement the SSL3.0, TLS1.0, TLS1.1 and TLS1.2 protocol, with
only RSA supported for Key Exchange.
WWW: http://github.com/vincenthz/hs-tls
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:19:56 |
pgj |
Certificates and Key reader/writer. At the moment only X509 certificate
and unencrypted private key are supported, but will include PGP
certificate and pkcs8 private keys.
WWW: http://github.com/vincenthz/hs-certificate
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:17:25 |
pgj |
Defines a data type, Attempt, which has a Success and Failure
constructor. Failure contains an extensible exception.
WWW: http://github.com/snoyberg/attempt/tree/master
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:14:51 |
pgj |
A simple type class for success/failure computations.
WWW: http://www.haskell.org/haskellwiki/Failure
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:12:23 |
pgj |
ASN1 data reader and writer in raw form with supports for high level
forms of ASN1 (BER, CER and DER).
WWW: http://github.com/vincenthz/hs-asn1-data
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:09:15 |
pgj |
This library implements the RSA encryption and signature algorithms for
arbitrarily-sized ByteStrings. While the implementations work, they are
not necessarily the fastest ones on the planet. Particularly key
generation. The algorithms included are based of RFC 3447, or the
Public-Key Cryptography Standard for RSA, version 2.1 (a.k.a, PKCS#1
v2.1).
WWW: http://hackage.haskell.org/package/RSA
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 16:06:05 |
pgj |
An unrolled implementation of MD5 purely in Haskell.
WWW: http://hackage.haskell.org/package/pureMD5
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 03:25:18 |
pgj |
Gitit is a wiki backed by a git, darcs, or mercurial filestore. Pages
and uploaded files can be modified either directly via the VCS's
command-line tools or through the wiki's web interface. Pandoc is used
for markup processing, so pages may be written in (extended) markdown,
reStructuredText, LaTeX, HTML, or literate Haskell, and exported in ten
different formats, including LaTeX, ConTeXt, DocBook, RTF, OpenOffice
ODT, and MediaWiki markup.
Notable features include:
* plugins: dynamically loaded page transformations written in Haskell.
* conversion of TeX math to MathML for display in web browsers.
* syntax highlighting of source code files and code snippets.
* Atom feeds (site-wide and per-page).
* a library, Network.Gitit, that makes it simple to include a gitit
wiki in any happstack application.
WWW: http://gitit.net/
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 03:21:47 |
pgj |
Run untrusted HTML through Text.HTML.SanitizeXSS.sanitizeXSS to prevent
XSS attacks.
WWW: http://github.com/gregwebs/haskell-xss-sanitize
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 03:18:12 |
pgj |
CSS parser and renderer.
WWW: http://www.yesodweb.com/
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 03:14:59 |
pgj |
The reCAPTCHA [1] is a service that provides captchas for preventing
automated spam in web applications. The recaptcha-hs provides functions
for using reCAPTCHA in Haskell web applications.
[1] http://recaptcha.net/
WWW: http://github.com/jgm/recaptcha/tree/master
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 03:11:31 |
pgj |
The filestore library provides an abstract interface for a versioning
file store, and modules that instatiate this interface. Currently Git,
Darcs, and Mercurial modules are provided, and other VCSs or databases
could be added.
WWW: http://johnmacfarlane.net/repos/filestore
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 03:08:15 |
pgj |
A port of the Java library by Terrence Parr.
WWW: http://hackage.haskell.org/package/HStringTemplate
Obtained from: FreeBSD Haskell |
7.0.4 18 Feb 2012 03:05:27 |
pgj |
Parser and writer for handling sectioned config files in Haskell. The
ConfigFile module works with configuration files in a standard format
that is easy for the user to edit, easy for the programmer to work with,
yet remains powerful and flexible. It is inspired by, and compatible
with, Python's ConfigParser module. It uses files that resemble Windows
.INI-style files, but with numerous improvements.
ConfigFile provides simple calls to both read and write config files.
It is possible to make a config file parsable by this module, the Unix
shell, and make.
WWW: http://software.complete.org/configfile
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 17:13:45 |
pgj |
The Haskell application server stack.
WWW: http://happstack.com/
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 17:11:56 |
pgj |
Unplug your machine and restart and have your app recover to exactly
where it left off. Happstack-State spares you the need to deal with all
the marshalling, consistency, and configuration headache that you would
have if you used an external DBMS for this purpose. Its component model
makes it easy to compose big applications from smaller reliable parts.
Use event subscription to trigger IO actions and support comet-style or
irc-bot applications.
WWW: http://happstack.com/
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 17:09:53 |
pgj |
Happstack Server provides an HTTP server and a rich set of functions for
routing requests, handling query parameters, generating responses,
working with cookies, serving files, and more.
WWW: http://happstack.com/
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 17:07:37 |
pgj |
Just pick which parts of your data structures you want indexed using an
easy to use template-haskell function. Spare yourself the need to
write, run, and maintain code that marshalls your data to/from an
external relational database just for efficient queries. The
happstack-ixset relies on generics and TH to spare you the boilerplate
normally required for such tasks.
WWW: http://happstack.com/
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 17:05:21 |
pgj |
Miscellaneous utilities for Happstack packages.
WWW: http://happstack.com/
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 17:03:33 |
pgj |
This package provides libraries for:
* Deriving instances for your datatypes.
* Producing default values of Haskell datatypes.
* Normalizing values of Haskell datatypes.
* Marshalling Haskell values to and from XML.
* Marshalling Haskell values to and from HTML forms.
WWW: http://happstack.com/
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 17:01:01 |
pgj |
Provides SYB-with-class instances for Text from the text package.
WWW: http://hackage.haskell.org/package/syb-with-class-instances-text
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 16:58:33 |
pgj |
Classes, and Template Haskell code to generate instances, for the Scrap
Your Boilerplate With Class system.
WWW: http://hackage.haskell.org/package/syb-with-class
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 16:56:03 |
pgj |
Support for computations with failures.
WWW: http://hackage.haskell.org/package/MaybeT
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 15:51:18 |
pgj |
lifted-base exports IO operations from the base library lifted to any
instance of MonadBase or MonadBaseControl.
WWW: https://github.com/basvandijk/lifted-base
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 15:48:59 |
pgj |
This package defines the type class MonadBaseControl, a subset of
MonadBase into which generic control operations such as catch can be
lifted from IO or any other base monad. Instances are based on monad
transformers in MonadTransControl, which includes all standard monad
transformers in the transformers library except ContT.
WWW: https://github.com/basvandijk/monad-control/
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 15:46:38 |
pgj |
This package provides a straightforward port of monadLib's BaseM type
class to transformers.
WWW: https://github.com/mvv/transformers-base
Obtained from: FreeBSD Haskell |
7.0.4 17 Feb 2012 15:44:09 |
pgj |
This package defines new symbols for a number of functions, operators
and types in the base package. All symbols are documented with their
actual definition and information regarding their Unicode code point.
They should be completely interchangeable with their definitions.
For further Unicode goodness you can enable the UnicodeSyntax language
extension. This extension enables Unicode characters to be used to
stand for certain ASCII character sequences.
WWW: http://haskell.org/haskellwiki/Unicode-symbols
Obtained from: FreeBSD Haskell |
7.0.4 13 Feb 2012 14:49:11 |
ashish |
- Fix MASTER_SITES
Obtained from: FreeBSD Haskell |
7.0.4 13 Feb 2012 06:13:00 |
pgj |
- Remove textproc/hs-attoparsec-text: The package has been deprecated. Now
the attoparsec includes all functionality from this library.
Obtained from: FreeBSD Haskell |
7.0.4 13 Feb 2012 03:49:33 |
pgj |
- Please welcome GHC 7.0.4
GHC in the ports tree has been updated to version 7.0.4 and the port revision
for all the Haskell ports without version changes are bumped. Other per-port
updates are coming soon.
This update also incorporates some improvements for bsd.cabal.mk that makes
working with Haskell ports even easier.
Thanks ashish@ for the help!
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:52:47 |
pgj |
Skein [1] is a family of fast secure cryptographic hash functions. This
package uses bindings to the optimized C implementation of Skein. There
is a high-level interface provided to some of the Skein use cases, and a
low-level interface when Skein has to be used in a different way.
Currently Skein is supported as cryptographic hash function as Skein as
a message authentication code (Skein-MAC).
[1] http://www.skein-hash.info/
WWW: http://patch-tag.com/r/felipe/skein
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:50:54 |
pgj |
To store passwords securely, they should be salted, then hashed with a
slow hash function. This library uses PBKDF1-SHA256, and handles all the
details. It uses the cryptohash package for speed; if you need a pure
Haskell library, pwstore-purehaskell has the exact same API, but uses
only pure Haskell. It is about 25 times slower than this package, but
still quite usable.
WWW: https://github.com/PeterScott/pwstore
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:49:00 |
pgj |
A platform independent method to obtain cryptographically strong entropy
(urandom on Linux, CryptAPI on Windows, patches welcome). Users looking
for cryptographically strong (number-theoretically sound) PRNGs should
see the DRBG package too!
WWW: http://trac.haskell.org/crypto-api/wiki
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:47:14 |
pgj |
A collection of crypto hashes, with a practical incremental and one-pass,
pure APIs, with performance close to the fastest implementations available
in others languages.
The implementations are made in C with a haskell FFI wrapper that hide the
C implementation.
WWW: http://github.com/vincenthz/hs-cryptohash
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:44:48 |
pgj |
Symmetrical Block, Stream, and PubKey Ciphers.
WWW: http://github.com/vincenthz/hs-cryptocipher
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:42:57 |
pgj |
Generic cryptography public keys algorithm types.
WWW: http://github.com/vincenthz/hs-crypto-pubkey-types
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:41:08 |
pgj |
A generic interface for cryptographic operations, platform independent quality
RNG, property tests and known-answer tests (KATs) for common algorithms, and a
basic benchmark infrastructure. Maintainers of hash and cipher implementations
are encouraged to add instances for the classes defined in Crypto.Classes.
Crypto users are similarly encouraged to use the interfaces defined in the
Classes module. Any concepts or functions of general use to more than one
cryptographic algorithm (ex: padding) is within scope of this package.
WWW: http://trac.haskell.org/crypto-api/wiki
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:39:04 |
pgj |
Simple crypto pseudo-random-number-generator with really good randomness
property.
WWW: http://github.com/vincenthz/hs-cprng-aes
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:37:09 |
pgj |
Achieves security through AES-CTR encryption and Skein-MAC-512-256
authentication. Uses Base64 encoding to avoid any issues with
characters.
WWW: http://github.com/snoyberg/clientsession/tree/master
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:34:41 |
pgj |
Automatically derive Lenses for your data type for use with Data.Lens.
WWW: http://github.com/ekmett/data-lens-template/
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:33:04 |
pgj |
Haskell 98 lenses.
WWW: http://github.com/ekmett/data-lens/
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:31:13 |
pgj |
Instances of numeric classes for functions and tuples.
WWW: http://hackage.haskell.org/package/NumInstances
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:28:52 |
pgj |
Cabal plugin for UUAGC.
WWW: http://www.cs.uu.nl/wiki/HUT/WebHome
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:27:03 |
pgj |
UUAG is the Utrecht University Attribute Grammar system. It generates Haskell
files from an attribute grammar specification.
It is a preprocessor for Haskell which makes it easy to write catamorphisms
(that is, functions that do to any datatype what foldr does to lists).
You can define tree walks using the intuitive concepts of inherited and
synthesized attributes, while keeping the full expressive power of Haskell.
WWW: http://www.cs.uu.nl/wiki/HUT/AttributeGrammarSystem
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:24:19 |
pgj |
Provides newtype wrappers for phantom types to avoid unsafely passing dummy
arguments.
WWW: http://github.com/ekmett/tagged
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:21:34 |
pgj |
A continuation-based, backtracking, logic programming monad. An
adaptation of the two-continuation implementation found in the paper
"Backtracking, Interleaving, and Terminating Monad Transformers" [1].
[1] http://okmij.org/ftp/papers/LogicT.pdf
WWW: http://code.haskell.org/~dolio/logict
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:19:29 |
pgj |
Provides Word128, Word192 and Word256 and a way of producing other large
words if required.
WWW: http://trac.haskell.org/largeword/wiki
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:17:35 |
pgj |
Haskell implementation of Mustache templates [1].
[1] http://mustache.github.com/
WWW: http://github.com/lymar/hastache
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:15:56 |
pgj |
This package provides a couple of different implementations of mutable hash
tables
in the ST monad, as well as a type class abstracting their common operations,
and
a set of wrappers to use the hash tables in the IO monad.
WWW: http://github.com/gregorycollins/hashtables
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:13:47 |
pgj |
A configuration management library for programs and daemons.
Features include:
* Automatic, dynamic reloading in response to modifications to configuration
files.
* A simple, but flexible, configuration language, supporting several of
the most commonly needed types of data, along with interpolation of
strings from the configuration or the system environment (e.g.
$(HOME)).
* Subscription-based notification of changes to configuration properties.
* An import directive allows the configuration of a complex application
to be split across several smaller files, or common configuration data
to be shared across several applications.
WWW: http://github.com/mailrank/configurator
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:11:23 |
pgj |
This package provides a Haskell library for working with base16-encoded
data quickly and efficiently, using the ByteString type.
WWW: https://github.com/mailrank/base16-bytestring
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:08:15 |
pgj |
Epic is a simple functional language which compiles to reasonably efficient C
code,
using the Boehm-Demers-Weiser garbage collector [1]. It is intended as a
compiler
back-end, and is currently used as a back end for Epigram [2] and Idris [3]. It
can be invoked either as a library or an application.
[1] http://www.hpl.hp.com/personal/Hans_Boehm/gc/
[2] http://www.e-pig.org/
[3] http://idris-lang.org/
WWW: http://www.dcs.st-and.ac.uk/~eb/epic.php
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:05:01 |
pgj |
The zlib-enum package is a stop-gap to provide enumeratees for zlib
compression and decompression.
WWW: http://github.com/maltem/zlib-enum
Obtained from: FreeBSD Haskell |
7.0.3_1 13 Feb 2012 02:02:34 |
pgj |
This package contains low-level bindigs to the zlib package.
WWW: http://github.com/snoyberg/zlib-bindings
Obtained from: FreeBSD Haskell |
7.0.3_1 05 Feb 2012 14:21:27 |
pgj |
- Add math-functions to chase the addition of math/hs-math-functions
Submitted by: wen |
7.0.3_1 26 Sep 2011 20:49:55 |
pgj |
- Update to 3.20110707
- Cabalize port
PR: ports/159348
Submitted by: pgj
Approved by: maintainer (timeout)
Obtained from: FreeBSD Haskell |
7.0.3_1 23 Sep 2011 22:26:39 |
amdmi3 |
- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead
PR: 157936
Submitted by: myself
Exp-runs by: pav
Approved by: pav |
7.0.3_1 06 Sep 2011 03:13:38 |
ashish |
This library parses and dumps documents that are formatted according to
RFC 4180, "The common Format and MIME Type for Comma-Separated Values
(CSV) Files". This format is used, among many other things, as a lingua
franca for spreadsheets, and for certain web services.
WWW: http://hackage.haskell.org/package/csv
PR: ports/159689
Submitted by: Kaspars Bankovskis <kaspars@bankovskis.lv> |
7.0.3_1 24 Aug 2011 13:17:35 |
pgj |
- Unbreak on 9.x. Random core dumps experienced during the build are
probably caused by an rtld(1) bug in the base system that may not
affect everybody, though.
For affected systems: watch out for the upcoming rtld(1) fix (by
Kostik Belousov) to be committed soon. |
7.0.3_1 14 Aug 2011 18:01:20 |
pgj |
This library offers an alternative parallel programming API to that
provided by the parallel package. The Par monad allows the simple
description of parallel computations, and can be used to add parallelism
to pure Haskell code. The basic API is straightforward: the monad
supports forking and simple communication in terms of IVars. The library
comes with an efficient work-stealing implementation, but the internals
are also exposed so that you can build your own scheduler if necessary.
WWW: http://github.com/simonmar/monad-par
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 17:55:09 |
pgj |
A JSON parsing and encoding library optimized for ease of use and high
performance. (A note on naming: in Greek mythology, Aeson was the
father of Jason.)
WWW: http://github.com/mailrank/aeson
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 17:52:20 |
pgj |
Efficient hashing-based container types. The containers have been
optimized for performance critical use, both in terms of large data
quantities and high speed.
The declared cost of each operation is either worst-case or amortized,
but remains valid even if structures are shared.
WWW: http://github.com/tibbe/unordered-containers/
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 17:49:44 |
pgj |
blaze-textual is a fast Haskell library for rendering common
Haskell datatypes in text form using the blaze-builder library.
WWW: http://github.com/mailrank/blaze-textual
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 17:46:17 |
pgj |
A library that performs fast, accurate conversion between double
precision floating point and text. This library is implemented as
bindings to the C++ double-conversion library written by Florian Loitsch
at Google: http://code.google.com/p/double-conversion/.
The Text versions of these functions are about 30 times faster than the
default show implementation for the Double type. The ByteString versions
are slower than the Text versions; roughly half the speed. (This seems
to be due to the cost of allocating ByteString values via malloc.)
As a final note, be aware that the bytestring-show package is about 50%
slower than simply using show.
WWW: http://github.com/mailrank/double-conversion
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 14:29:14 |
pgj |
Fast base64 encoding and decoding for ByteStrings.
WWW: http://github.com/bos/base64-bytestring
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 12:04:34 |
pgj |
- Remove port for the obsolete (and broken) category-extras Cabal package
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 11:49:42 |
pgj |
- Unbreak build for devel/hs-reactive
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 11:45:37 |
pgj |
Haskell 98 pointed and copointed data.
WWW: http://github.com/ekmett/copointed/
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 11:38:54 |
pgj |
Comonad transformers.
WWW: http://github.com/ekmett/comonad-transformers/
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 11:36:29 |
pgj |
Provides a wide array of semigroupoids and operations for working with
semigroupoids. A Semigroupoid is a Category without the requirement of
identity arrows for every object in the category.
WWW: http://github.com/ekmett/semigroupoids/
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 11:32:23 |
pgj |
Haskell 98 distributive functors -- dual to Traversable.
WWW: http://github.com/ekmett/distributive/
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 11:30:06 |
pgj |
Haskell 98 contravariant functors.
WWW: http://github.com/ekmett/contravariant/
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 11:27:44 |
pgj |
Haskell 98 comonads.
WWW: http://github.com/ekmett/comonad/
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 11:25:29 |
pgj |
- Update to 0.2.8
- Un-break build
Obtained from: FreeBSD Haskell |
7.0.3_1 14 Aug 2011 11:22:22 |
pgj |
Categories from category-extras.
WWW: http://comonad.com/reader/
Obtained from: FreeBSD Haskell |