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/vector-space: vectors and affine spaces library, a depend…
… of dev-haskell/thyme Package-Manager: portage-2.3.0
- Loading branch information
Sergei Trofimovich
committed
Sep 11, 2016
1 parent
a2cfb19
commit b4a020e
Showing
3 changed files
with
51 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 vector-space-0.10.4.tar.gz 14249 SHA256 b712cc9fc675b1d9e592f56ed08a9636c87783c11d6ac84b5f18f46cdcbefda2 SHA512 c7218701fe837eab01cd65b3bc0ce2d85fb3a73c8aa034bb606b7bc0bbe87856dc5f375bd1515f65f77e08e12d84b63757d0ba755ae726771888ea7413bac183 WHIRLPOOL bd52e181afcb2744e400c810522b4d2bbba040145eebd66fd9becac1f455596ac921661f9bf4bc73b4a323b8cb32e581973524703d14431f990da8940b7c65b9 |
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,22 @@ | ||
<?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> | ||
/vector-space/ provides classes and generic operations for vector | ||
spaces and affine spaces. It also defines a type of infinite towers | ||
of generalized derivatives. A generalized derivative is a linear | ||
transformation rather than one of the common concrete representations | ||
(scalars, vectors, matrices, ...). | ||
|
||
/Warning/: this package depends on type families working fairly well, | ||
and requires ghc version at least 6.9. | ||
|
||
Project wiki page: <http://haskell.org/haskellwiki/vector-space> | ||
|
||
&#169; 2008-2012 by Conal Elliott; BSD3 license. | ||
</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,28 @@ | ||
# 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="lib profile haddock hoogle hscolour" | ||
inherit haskell-cabal | ||
|
||
DESCRIPTION="Vector & affine spaces, linear maps, and derivatives" | ||
HOMEPAGE="http://hackage.haskell.org/package/vector-space" | ||
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" | ||
|
||
LICENSE="BSD" | ||
SLOT="0/${PV}" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
RDEPEND=">=dev-haskell/boolean-0.1.0:=[profile?] | ||
>=dev-haskell/memotrie-0.5:=[profile?] | ||
>=dev-haskell/numinstances-1.0:=[profile?] | ||
>=dev-lang/ghc-7.4.1:= | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-haskell/cabal-1.6 | ||
" |