forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-haskell/language-ecmascript: parser and pretty-printer for JavaSc…
…ript, a depend of app-forensics/quickfuzz Package-Manager: portage-2.3.0
- Loading branch information
Sergei Trofimovich
committed
Sep 11, 2016
1 parent
7dfe093
commit 113d998
Showing
3 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST language-ecmascript-0.17.1.0.tar.gz 55540 SHA256 df1e3f0d3096d522f278c644d3efbedabee29e2babfdf9d497287550f017883e SHA512 20a007e2934fc1778cdc5cac123a08b534ec36bec0b6f789f7c4b68c46b548b1e898f123ff1b7512905e28a1dc78e19d6bf517ced28ffcfbafb539f82f073f91 WHIRLPOOL 6dde567152f6e8749c351b2a5a105ddd6a9a31de97b42a7828965cd2c5fd4a841f4f5a5f4cfaad4863b49167456fbc6af22605483e95a71e3929a11bf9ae90bd |
42 changes: 42 additions & 0 deletions
42
dev-haskell/language-ecmascript/language-ecmascript-0.17.1.0-r1.ebuild
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
# ebuild generated by hackport 0.4.7.9999 | ||
|
||
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" | ||
inherit haskell-cabal | ||
|
||
DESCRIPTION="JavaScript parser and pretty-printer library" | ||
HOMEPAGE="https://github.com/jswebtools/language-ecmascript" | ||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" | ||
|
||
LICENSE="BSD" | ||
SLOT="0/${PV}" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
RDEPEND=">=dev-haskell/data-default-class-0.0.1:=[profile?] | ||
>=dev-haskell/diff-0.3:=[profile?] <dev-haskell/diff-0.4:=[profile?] | ||
>=dev-haskell/mtl-1:=[profile?] <dev-haskell/mtl-3:=[profile?] | ||
>dev-haskell/parsec-3:=[profile?] <dev-haskell/parsec-3.2.0:=[profile?] | ||
>=dev-haskell/quickcheck-2.5:2=[profile?] <dev-haskell/quickcheck-3:2=[profile?] | ||
>=dev-haskell/testing-feat-0.4.0.2:=[profile?] <dev-haskell/testing-feat-0.5:=[profile?] | ||
>=dev-haskell/uniplate-1.6:=[profile?] <dev-haskell/uniplate-1.7:=[profile?] | ||
>=dev-haskell/wl-pprint-1.2:=[profile?] <dev-haskell/wl-pprint-2:=[profile?] | ||
>=dev-lang/ghc-7.4.1:= | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-haskell/cabal-1.10 | ||
test? ( >=dev-haskell/hunit-1.2 <dev-haskell/hunit-1.4 | ||
>=dev-haskell/test-framework-0.8 <dev-haskell/test-framework-0.9 | ||
>=dev-haskell/test-framework-hunit-0.3.0 <dev-haskell/test-framework-hunit-0.4 | ||
>=dev-haskell/test-framework-quickcheck2-0.3.0.1 <dev-haskell/test-framework-quickcheck2-0.4 ) | ||
" | ||
|
||
src_prepare() { | ||
cabal_chdeps \ | ||
'data-default-class >= 0.0.1 && < 0.1' 'data-default-class >= 0.0.1' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="project"> | ||
<email>[email protected]</email> | ||
<name>Gentoo Haskell</name> | ||
</maintainer> | ||
<longdescription> | ||
Some tools for working with ECMAScript 3 (popularly known as JavaScript). | ||
Includes a parser, pretty-printer, and basic building blocks for more | ||
sophisticated tools. | ||
This package used to be called WebBits. | ||
</longdescription> | ||
</pkgmetadata> |