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/system-filepath | |
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/system-filepath')
-rw-r--r-- | dev-haskell/system-filepath/Manifest | 2 | ||||
-rw-r--r-- | dev-haskell/system-filepath/metadata.xml | 8 | ||||
-rw-r--r-- | dev-haskell/system-filepath/system-filepath-0.4.13.4.ebuild | 29 | ||||
-rw-r--r-- | dev-haskell/system-filepath/system-filepath-0.4.8-r1.ebuild | 32 |
4 files changed, 71 insertions, 0 deletions
diff --git a/dev-haskell/system-filepath/Manifest b/dev-haskell/system-filepath/Manifest new file mode 100644 index 000000000000..fa19c29631a2 --- /dev/null +++ b/dev-haskell/system-filepath/Manifest @@ -0,0 +1,2 @@ +DIST system-filepath-0.4.13.4.tar.gz 16590 SHA256 345d7dec968b74ab1b8c0e7bb78c2ef1e5be7be6b7bac455340fd658abfec5fb SHA512 81df3ed7bee9ae8b568533361d1b6574cc26c24218922005f03d70828624b6fd279342753c571921c62f69b6dadce4eb6c88cf4ef5cb76c536c5113c37f5cc38 WHIRLPOOL d3727b5357b62c66f716968293636178425fec9e45ef142b7fe31c2f16455528d76460147133120716184718636232fb28cece45c779ef5c0b518a61248c9240 +DIST system-filepath-0.4.8.tar.gz 14497 SHA256 7cf6218b310498cef168e5b0b05befc8a8e2f7bf84820cdfc62d633c55f7a097 SHA512 ee23a468186f1e709ec8b39d3b6855038a9f5a7fa4b37b37407b8dbed7668ddb4efe21e877a51b94b20bc3d9a59dd9a525b7378783ac9a0c7a4183ba615b01be WHIRLPOOL 86a4c23282381ddb6430c9a2d4febd9c38c21f3884bcc0b826684e9d36ab11ffc3bd8f433c391daf42ae6485f1b00ff611968d72ae740c19527f06b4e55b0f3e diff --git a/dev-haskell/system-filepath/metadata.xml b/dev-haskell/system-filepath/metadata.xml new file mode 100644 index 000000000000..be3cb75f1370 --- /dev/null +++ b/dev-haskell/system-filepath/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>haskell</herd> + <longdescription> + High-level, byte-based file and directory path manipulations + </longdescription> +</pkgmetadata> diff --git a/dev-haskell/system-filepath/system-filepath-0.4.13.4.ebuild b/dev-haskell/system-filepath/system-filepath-0.4.13.4.ebuild new file mode 100644 index 000000000000..c6364a255eb7 --- /dev/null +++ b/dev-haskell/system-filepath/system-filepath-0.4.13.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.4.5.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="High-level, byte-based file and directory path manipulations (deprecated)" +HOMEPAGE="https://github.com/fpco/haskell-filesystem" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/text-0.11.0.6:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( >=dev-haskell/chell-0.4 <dev-haskell/chell-0.5 + >=dev-haskell/chell-quickcheck-0.2 <dev-haskell/chell-quickcheck-0.3 + dev-haskell/quickcheck ) +" diff --git a/dev-haskell/system-filepath/system-filepath-0.4.8-r1.ebuild b/dev-haskell/system-filepath/system-filepath-0.4.8-r1.ebuild new file mode 100644 index 000000000000..761ef52a83cf --- /dev/null +++ b/dev-haskell/system-filepath/system-filepath-0.4.8-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.3.4.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="High-level, byte-based file and directory path manipulations" +HOMEPAGE="https://john-millikin.com/software/haskell-filesystem/" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND=">=dev-haskell/text-0.7.1:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6.0.3 +" + +src_prepare() { + cabal_chdeps \ + 'deepseq >= 1.1 && < 1.4' 'deepseq >= 1.1' \ + 'text >= 0.7.1 && < 0.12' 'text >= 0.7.1' +} |