Skip to content

Commit

Permalink
Moved version 0.1 from Hackage under GIT.
Browse files Browse the repository at this point in the history
  • Loading branch information
amtal committed Oct 12, 2011
0 parents commit 35c9ad1
Show file tree
Hide file tree
Showing 9 changed files with 1,256 additions and 0 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
@@ -0,0 +1,2 @@
David Castro Pérez <dcastrop@udc.es>
Henrique Ferreiro García <hferreiro@udc.es>
33 changes: 33 additions & 0 deletions CoreErlang.cabal
@@ -0,0 +1,33 @@
name: CoreErlang
version: 0.0.1
copyright: 2008, David Castro Pérez, Henrique Ferreiro García
license: BSD3
license-file: LICENSE
author: David Castro Pérez <dcastrop@udc.es>
Henrique Ferreiro García <hferreiro@udc.es>
maintainer: Henrique Ferreiro García <hferreiro@udc.es>
David Castro Pérez <dcastrop@udc.es>
homepage: .
stability: Experimental
category: Language
synopsis: Manipulating Core Erlang source code
description:
Facilities for manipulating Core Erlang source code:
an abstract syntax, parser and pretty-printer.
build-type: Simple
cabal-version: >= 1.2

extra-source-files:
AUTHORS LICENSE

flag split-base

library
exposed-modules:
Language.CoreErlang.Parser,
Language.CoreErlang.Pretty,
Language.CoreErlang.Syntax
if flag(split-base)
build-depends: base >= 3, parsec == 2.1.0.0, pretty
else
build-depends: base < 3, parsec == 2.1.0.0
38 changes: 38 additions & 0 deletions LICENSE
@@ -0,0 +1,38 @@
Copyright (c) 2008, David Castro Pérez <dcastrop@udc.es>
Henrique Ferreiro García <hferreiro@udc.es>

This library is derived from code from the GHC project (libraries/haskell-src)
which is largely (c) The University of Glasgow, and distributable under
a BSD-style license. The full text of the license is reproduced below:

The Glasgow Haskell Compiler License

Copyright 2004, The University Court of the University of Glasgow.
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

- Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

- Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.

- Neither name of the University nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY COURT OF THE UNIVERSITY OF
GLASGOW AND THE CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
UNIVERSITY COURT OF THE UNIVERSITY OF GLASGOW OR THE CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.

0 comments on commit 35c9ad1

Please sign in to comment.