Skip to content

bos/event

 
 

Repository files navigation

Scalable event notification

The event library provides scalable event notification for file handles, sockets, timers, etc.

Contributing

Prerequisites

Make sure you read the [Haskell Style Guide] 1.

The existing code doesn't follow the style guide fully but you should follow it for all new code.

Creating patches

The preferred way of contributing changes to the project is to use Git and send the patches over email using the Git commands format-patch and send-email. Step by step instructions:

Clone the repository:

git clone http://github.com/tibbe/event

Make your changes:

cd event
$EDITOR <file>

Commit your changes in one or more commits:

git add <file>
git commit

Make sure you write a good commit message. Commit messages should contain a short summary on a separate line and, if needed, a more thorough explanation of the change. Write full sentences and use proper spelling, punctuation, and grammar. See [A Note About Git Commit Messages] 2 for more information.

You might want to use git rebase to make sure your commits correspond to nice, logical commits. Make sure whitespace only changes are kept in separate commits to ease reviewing.

To prepare your patches for sending:

git format-patch -n origin

This will create one patch file per patch.

git send-email --to <maintainer> <patch files>

The maintainer is specified in the Cabal file. The maintainer will review your patches and may ask you to make changes to them. Make the changes in your local repository and use git rebase to massage them into nice, logical commits and resend the patches.

Building and running the tests

The configure script and several of the include files are generated using autotools. The first time you build the library you have to run:

autoreconf

You can build and run all unit tests by running:

cabal configure && cabal build && make -C tests run-tests

References

Releases

No releases published

Packages

No packages published

Languages

  • Haskell 93.9%
  • Python 4.1%
  • C 1.3%
  • Shell 0.7%