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/riff: RIFF file parser, a depend of dev-haskell/wavy
Package-Manager: portage-2.3.0
- Loading branch information
Sergei Trofimovich
committed
Sep 11, 2016
1 parent
ba9927d
commit 95033a4
Showing
3 changed files
with
49 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 riff-0.3.0.1.tar.gz 9420 SHA256 abc1726fbcae31061a31df4d4d569b3c4090d5bfaa22e9f5af863d1b9e5ee0a4 SHA512 9b488fa0853dec662109809627c451ec22766595e710a14d25598e1232bc1e286a649a9fd4933bf42737b68554f1a0401c0fee12e833d6fd79b9eb989a4d23b2 WHIRLPOOL 6d09e2ffb56088801fe4d8eef473f9793408acd9b4d6ab8a6e013bdef9c2c3f0acff05e4027b50ee819bbad4deb60bf75faea45bdc0cbf289faad0027bae1ad8 |
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,12 @@ | ||
<?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> | ||
This library provides a RIFF parser for Haskell for easy manipulation | ||
of common file formats like WAVE and RIFF container AVI files. | ||
</longdescription> | ||
</pkgmetadata> |
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,36 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
# ebuild generated by hackport 0.5.9999 | ||
|
||
CABAL_FEATURES="bin lib profile haddock hoogle hscolour" | ||
inherit haskell-cabal | ||
|
||
DESCRIPTION="RIFF parser for Haskell" | ||
HOMEPAGE="https://bitbucket.org/robertmassaioli/riff/overview" | ||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" | ||
|
||
LICENSE="MIT" | ||
SLOT="0/${PV}" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
RDEPEND=">=dev-haskell/either-4.3:=[profile?] | ||
>=dev-lang/ghc-7.10.1:= | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-haskell/cabal-1.22.2.0 | ||
" | ||
|
||
src_prepare() { | ||
default | ||
|
||
cabal_chdeps \ | ||
'binary >=0.7 && <0.8' 'binary >=0.7' \ | ||
'either == 4.3.*' 'either >= 4.3' \ | ||
'filepath >=1.3 && <1.4' 'filepath >=1.3' \ | ||
'transformers == 0.4.*' 'transformers >= 0.4' | ||
} |