diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-haskell/tensor | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-haskell/tensor')
-rw-r--r-- | dev-haskell/tensor/Manifest | 1 | ||||
-rw-r--r-- | dev-haskell/tensor/files/tensor-1.0.0.1-ghc-7.8.patch | 185 | ||||
-rw-r--r-- | dev-haskell/tensor/metadata.xml | 9 | ||||
-rw-r--r-- | dev-haskell/tensor/tensor-1.0.0.1.ebuild | 31 |
4 files changed, 226 insertions, 0 deletions
diff --git a/dev-haskell/tensor/Manifest b/dev-haskell/tensor/Manifest new file mode 100644 index 000000000000..3ef632f75964 --- /dev/null +++ b/dev-haskell/tensor/Manifest @@ -0,0 +1 @@ +DIST Tensor-1.0.0.1.tar.gz 3314 SHA256 e93260d22baf4808c88c553017ba6a4e8179e95a00e551d6edb2d8f9ca845981 SHA512 8808d71cb3a3d19991a07c2652751f35bf6c4a4d5dc4090b1ce4835c4cabe29d04b968555663ec7facd93fbb3239031b6540d8afd0661fa4d7b4652a1bf2fd96 WHIRLPOOL 4fc81b9b820b6da98ec2c0e86ea600259ef0d13de5b3168088c8edcc7c56628691deb5a2be50595634e5994652cf889c6d7eba0c41c5904423e1713ab04d0f44 diff --git a/dev-haskell/tensor/files/tensor-1.0.0.1-ghc-7.8.patch b/dev-haskell/tensor/files/tensor-1.0.0.1-ghc-7.8.patch new file mode 100644 index 000000000000..7ef3ed758676 --- /dev/null +++ b/dev-haskell/tensor/files/tensor-1.0.0.1-ghc-7.8.patch @@ -0,0 +1,185 @@ +diff --git a/src/Data/Tensor.hs b/src/Data/Tensor.hs +index a5042df..0ba41f0 100644 +--- a/src/Data/Tensor.hs ++++ b/src/Data/Tensor.hs +@@ -1,3 +1,4 @@ ++{-# LANGUAGE DeriveDataTypeable #-} + -------------------------------------------------------------------------------- + -- | + -- Module : Data.Tensor +@@ -32,7 +33,7 @@ import Foreign.Storable + + -- | A vertex with /y/=0, /z/=0 and /w/=1. + newtype Vertex1 a = Vertex1 a +- deriving (Eq, Ord, Ix, Bounded, Show, Read) ++ deriving (Eq, Ord, Ix, Bounded, Show, Read, Typeable) + + instance Functor Vertex1 where + fmap f (Vertex1 x) = Vertex1 (f x) +@@ -53,12 +54,6 @@ instance Traversable Vertex1 where + mapM f (Vertex1 x) = return Vertex1 `ap` f x + sequence (Vertex1 x) = return Vertex1 `ap` x + +-instance Typeable1 Vertex1 where +- typeOf1 _ = mkTyConApp (mkTyCon "Vertex1") [] +- +-instance Typeable a => Typeable (Vertex1 a) where +- typeOf = typeOfDefault +- + instance Storable a => Storable (Vertex1 a) where + sizeOf ~(Vertex1 s) = sizeOf s + alignment ~(Vertex1 s) = alignment s +@@ -69,7 +64,7 @@ instance Storable a => Storable (Vertex1 a) where + + -- | A vertex with /z/=0 and /w/=1. + data Vertex2 a = Vertex2 !a !a +- deriving (Eq, Ord, Ix, Bounded, Show, Read) ++ deriving (Eq, Ord, Ix, Bounded, Show, Read, Typeable) + + instance Functor Vertex2 where + fmap f (Vertex2 x y) = Vertex2 (f x) (f y) +@@ -90,12 +85,6 @@ instance Traversable Vertex2 where + mapM f (Vertex2 x y) = return Vertex2 `ap` f x `ap` f y + sequence (Vertex2 x y) = return Vertex2 `ap` x `ap` y + +-instance Typeable1 Vertex2 where +- typeOf1 _ = mkTyConApp (mkTyCon "Vertex2") [] +- +-instance Typeable a => Typeable (Vertex2 a) where +- typeOf = typeOfDefault +- + instance Storable a => Storable (Vertex2 a) where + sizeOf ~(Vertex2 x _) = 2 * sizeOf x + alignment ~(Vertex2 x _) = alignment x +@@ -106,7 +95,7 @@ instance Storable a => Storable (Vertex2 a) where + + -- | A vertex with /w/=1. + data Vertex3 a = Vertex3 !a !a !a +- deriving (Eq, Ord, Ix, Bounded, Show, Read) ++ deriving (Eq, Ord, Ix, Bounded, Show, Read, Typeable) + + instance Functor Vertex3 where + fmap f (Vertex3 x y z) = Vertex3 (f x) (f y) (f z) +@@ -127,12 +116,6 @@ instance Traversable Vertex3 where + mapM f (Vertex3 x y z) = return Vertex3 `ap` f x `ap` f y `ap` f z + sequence (Vertex3 x y z) = return Vertex3 `ap` x `ap` y `ap` z + +-instance Typeable1 Vertex3 where +- typeOf1 _ = mkTyConApp (mkTyCon "Vertex3") [] +- +-instance Typeable a => Typeable (Vertex3 a) where +- typeOf = typeOfDefault +- + instance Storable a => Storable (Vertex3 a) where + sizeOf ~(Vertex3 x _ _) = 3 * sizeOf x + alignment ~(Vertex3 x _ _) = alignment x +@@ -143,7 +126,7 @@ instance Storable a => Storable (Vertex3 a) where + + -- | A fully-fledged four-dimensional vertex. + data Vertex4 a = Vertex4 !a !a !a !a +- deriving (Eq, Ord, Ix, Bounded, Show, Read) ++ deriving (Eq, Ord, Ix, Bounded, Show, Read, Typeable) + + instance Functor Vertex4 where + fmap f (Vertex4 x y z w) = Vertex4 (f x) (f y) (f z) (f w) +@@ -164,12 +147,6 @@ instance Traversable Vertex4 where + mapM f (Vertex4 x y z w) = return Vertex4 `ap` f x `ap` f y `ap` f z `ap` f w + sequence (Vertex4 x y z w) = return Vertex4 `ap` x `ap` y `ap` z `ap` w + +-instance Typeable1 Vertex4 where +- typeOf1 _ = mkTyConApp (mkTyCon "Vertex4") [] +- +-instance Typeable a => Typeable (Vertex4 a) where +- typeOf = typeOfDefault +- + instance Storable a => Storable (Vertex4 a) where + sizeOf ~(Vertex4 x _ _ _) = 4 * sizeOf x + alignment ~(Vertex4 x _ _ _) = alignment x +@@ -180,7 +157,7 @@ instance Storable a => Storable (Vertex4 a) where + + -- | A one-dimensional vector. + newtype Vector1 a = Vector1 a +- deriving (Eq, Ord, Ix, Bounded, Show, Read) ++ deriving (Eq, Ord, Ix, Bounded, Show, Read, Typeable) + + instance Functor Vector1 where + fmap f (Vector1 x) = Vector1 (f x) +@@ -201,12 +178,6 @@ instance Traversable Vector1 where + mapM f (Vector1 x) = return Vector1 `ap` f x + sequence (Vector1 x) = return Vector1 `ap` x + +-instance Typeable1 Vector1 where +- typeOf1 _ = mkTyConApp (mkTyCon "Vector1") [] +- +-instance Typeable a => Typeable (Vector1 a) where +- typeOf = typeOfDefault +- + instance Storable a => Storable (Vector1 a) where + sizeOf ~(Vector1 s) = sizeOf s + alignment ~(Vector1 s) = alignment s +@@ -217,7 +188,7 @@ instance Storable a => Storable (Vector1 a) where + + -- | A two-dimensional vector. + data Vector2 a = Vector2 !a !a +- deriving (Eq, Ord, Ix, Bounded, Show, Read) ++ deriving (Eq, Ord, Ix, Bounded, Show, Read, Typeable) + + instance Functor Vector2 where + fmap f (Vector2 x y) = Vector2 (f x) (f y) +@@ -238,12 +209,6 @@ instance Traversable Vector2 where + mapM f (Vector2 x y) = return Vector2 `ap` f x `ap` f y + sequence (Vector2 x y) = return Vector2 `ap` x `ap` y + +-instance Typeable1 Vector2 where +- typeOf1 _ = mkTyConApp (mkTyCon "Vector2") [] +- +-instance Typeable a => Typeable (Vector2 a) where +- typeOf = typeOfDefault +- + instance Storable a => Storable (Vector2 a) where + sizeOf ~(Vector2 x _) = 2 * sizeOf x + alignment ~(Vector2 x _) = alignment x +@@ -254,7 +219,7 @@ instance Storable a => Storable (Vector2 a) where + + -- | A three-dimensional vector. + data Vector3 a = Vector3 !a !a !a +- deriving (Eq, Ord, Ix, Bounded, Show, Read) ++ deriving (Eq, Ord, Ix, Bounded, Show, Read, Typeable) + + instance Functor Vector3 where + fmap f (Vector3 x y z) = Vector3 (f x) (f y) (f z) +@@ -275,12 +240,6 @@ instance Traversable Vector3 where + mapM f (Vector3 x y z) = return Vector3 `ap` f x `ap` f y `ap` f z + sequence (Vector3 x y z) = return Vector3 `ap` x `ap` y `ap` z + +-instance Typeable1 Vector3 where +- typeOf1 _ = mkTyConApp (mkTyCon "Vector3") [] +- +-instance Typeable a => Typeable (Vector3 a) where +- typeOf = typeOfDefault +- + instance Storable a => Storable (Vector3 a) where + sizeOf ~(Vector3 x _ _) = 3 * sizeOf x + alignment ~(Vector3 x _ _) = alignment x +@@ -291,7 +250,7 @@ instance Storable a => Storable (Vector3 a) where + + -- | A four-dimensional vector. + data Vector4 a = Vector4 !a !a !a !a +- deriving (Eq, Ord, Ix, Bounded, Show, Read) ++ deriving (Eq, Ord, Ix, Bounded, Show, Read, Typeable) + + instance Functor Vector4 where + fmap f (Vector4 x y z w) = Vector4 (f x) (f y) (f z) (f w) +@@ -312,12 +271,6 @@ instance Traversable Vector4 where + mapM f (Vector4 x y z w) = return Vector4 `ap` f x `ap` f y `ap` f z `ap` f w + sequence (Vector4 x y z w) = return Vector4 `ap` x `ap` y `ap` z `ap` w + +-instance Typeable1 Vector4 where +- typeOf1 _ = mkTyConApp (mkTyCon "Vector4") [] +- +-instance Typeable a => Typeable (Vector4 a) where +- typeOf = typeOfDefault +- + instance Storable a => Storable (Vector4 a) where + sizeOf ~(Vector4 x _ _ _) = 4 * sizeOf x + alignment ~(Vector4 x _ _ _) = alignment x diff --git a/dev-haskell/tensor/metadata.xml b/dev-haskell/tensor/metadata.xml new file mode 100644 index 000000000000..f7375cc05f2c --- /dev/null +++ b/dev-haskell/tensor/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>haskell</herd> + <longdescription> + This package contains tensor data types and their instances for some basic + type classes. + </longdescription> +</pkgmetadata> diff --git a/dev-haskell/tensor/tensor-1.0.0.1.ebuild b/dev-haskell/tensor/tensor-1.0.0.1.ebuild new file mode 100644 index 000000000000..f1fedef98022 --- /dev/null +++ b/dev-haskell/tensor/tensor-1.0.0.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.4.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit base haskell-cabal + +MY_PN="Tensor" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Tensor data types" +HOMEPAGE="http://www.haskell.org/HOpenGL/" +SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="amd64 sparc x86" +IUSE="" + +RDEPEND=">=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + dev-haskell/cabal +" +PATCHES=("${FILESDIR}"/${PN}-1.0.0.1-ghc-7.8.patch) + +S="${WORKDIR}/${MY_P}" |