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/stringable | |
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/stringable')
-rw-r--r-- | dev-haskell/stringable/Manifest | 2 | ||||
-rw-r--r-- | dev-haskell/stringable/metadata.xml | 10 | ||||
-rw-r--r-- | dev-haskell/stringable/stringable-0.1.2.ebuild | 27 | ||||
-rw-r--r-- | dev-haskell/stringable/stringable-0.1.3.ebuild | 27 |
4 files changed, 66 insertions, 0 deletions
diff --git a/dev-haskell/stringable/Manifest b/dev-haskell/stringable/Manifest new file mode 100644 index 000000000000..28141d8a5313 --- /dev/null +++ b/dev-haskell/stringable/Manifest @@ -0,0 +1,2 @@ +DIST stringable-0.1.2.tar.gz 2667 SHA256 fa159bd3f535c7367479f63380726299a3a9fcdf53ec452f454883d487cf909e SHA512 80084bf115e81fb2405af6e144d50245d02e0f855121ad1117d5af6f673c1170522a4379dea122d35d6acef1db053d991316ebb2ce19e434042db19ea1b4efff WHIRLPOOL d9485ce108d88e7d3ed69568233c6fc9c0c347104582b456479a2381d94ecd90e6d663585930efffe41ce59acc5da6b0d620ba6aec65e3cac8c7181227a8ae6a +DIST stringable-0.1.3.tar.gz 2665 SHA256 e7af961e1eb52c89330aeb5434d7cfdebd3b712dd39812f68dcbd685e3da5a82 SHA512 f55ac3b1ef18ed9f219da7d7146d625e347d4bc6690e0daf1624692765f06950a3ef4b31a47cb519da519413b36baef2fa9074b04809ef81f9fd2aa7e5c9bfe1 WHIRLPOOL 06000350e377c356226ba83ba83a8cf7b9063d4d4d5bfa920c46eeb311ccb03de2a5b67ad920ce61b9bc8cea6f8a7f4475c5dd9b9cf75f06426f52dbaf3abb57 diff --git a/dev-haskell/stringable/metadata.xml b/dev-haskell/stringable/metadata.xml new file mode 100644 index 000000000000..f8a154b871be --- /dev/null +++ b/dev-haskell/stringable/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>haskell</herd> + <longdescription> + 'Data.Stringable' provides a type class with a set of functions for + converting to and from the most often used string-linke types in + Haskell. + </longdescription> +</pkgmetadata> diff --git a/dev-haskell/stringable/stringable-0.1.2.ebuild b/dev-haskell/stringable/stringable-0.1.2.ebuild new file mode 100644 index 000000000000..d13641f98b89 --- /dev/null +++ b/dev-haskell/stringable/stringable-0.1.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +# ebuild generated by hackport 0.3.3.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="A Stringable type class, in the spirit of Foldable and Traversable" +HOMEPAGE="http://hackage.haskell.org/package/stringable" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND=">=dev-haskell/system-filepath-0.4.7:=[profile?] + >=dev-haskell/text-0.11.2:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.10 +" diff --git a/dev-haskell/stringable/stringable-0.1.3.ebuild b/dev-haskell/stringable/stringable-0.1.3.ebuild new file mode 100644 index 000000000000..7802ecd301f3 --- /dev/null +++ b/dev-haskell/stringable/stringable-0.1.3.ebuild @@ -0,0 +1,27 @@ +# 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.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="A Stringable type class, in the spirit of Foldable and Traversable" +HOMEPAGE="http://hackage.haskell.org/package/stringable" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="amd64 x86" +IUSE="" + +RDEPEND=">=dev-haskell/system-filepath-0.4.7:=[profile?] + >=dev-haskell/text-0.11.2:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.10 +" |