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/http-date | |
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/http-date')
-rw-r--r-- | dev-haskell/http-date/Manifest | 3 | ||||
-rw-r--r-- | dev-haskell/http-date/http-date-0.0.4.ebuild | 27 | ||||
-rw-r--r-- | dev-haskell/http-date/http-date-0.0.6.1.ebuild | 29 | ||||
-rw-r--r-- | dev-haskell/http-date/http-date-0.0.6.ebuild | 28 | ||||
-rw-r--r-- | dev-haskell/http-date/metadata.xml | 8 |
5 files changed, 95 insertions, 0 deletions
diff --git a/dev-haskell/http-date/Manifest b/dev-haskell/http-date/Manifest new file mode 100644 index 000000000000..5ee1709c4aca --- /dev/null +++ b/dev-haskell/http-date/Manifest @@ -0,0 +1,3 @@ +DIST http-date-0.0.4.tar.gz 4865 SHA256 25228b2456b319c7c777ea3673f441ddf68881da176b37c51feab2108d0175dd SHA512 a9520ba9dc6a5ccd71f8fdc82ad795acddb492a50f0ebcd3b02389f5bc0154faa31a0a8ee6345c06120f793c5b2aad6f6e3210a63ec9d1aa46d8d72bb7d9b684 WHIRLPOOL 9955db3658db200c609b6789ea15dbd3f7fea19ed3f1cfb202df3ab8482794bfa317ac87e7dcf7ffcdda24ee7344ccb2c64247a897d30ec0218e753f1f7e2073 +DIST http-date-0.0.6.1.tar.gz 4989 SHA256 f2e106603e2b3f710f1189e478f6c20067d9a9d21a20a633fe362b3f91807636 SHA512 456d59bc9405578526ea458772ba8b01d1fe85607bc0e201efd6f0f080525205cbf8eba19dfd5f64ff520510a9a7ae3b7008fe43fee0e312b792476b965ba739 WHIRLPOOL 069a9b887457edabc3354586d475939a2e39aa84a6e29800c1e1189f56bd9ac56e90953f80436f51c87e830d0d1c4966f905b1588b7d1d5d9a68a373c820b6a2 +DIST http-date-0.0.6.tar.gz 4953 SHA256 898d56c1b5736b3f866c7abf9ab2bdc6811d6bcddf8a784d0074b2afdc223a38 SHA512 54b8b63fd28fad61a849bd6581d7577a415e0fbd2c3ef8040a92b3f6a94de03afc2683b5682b6de2808eedf865f4861d2925651048c91a4ff0c34818fd75fe5c WHIRLPOOL dd165df6d22d1dfb25a24c0a54f3714e35cc095133bb7d85100848996d03080d578a8e0d75bd9ca3e153373da1a14627472ec972541fa64081a3beaa271b5759 diff --git a/dev-haskell/http-date/http-date-0.0.4.ebuild b/dev-haskell/http-date/http-date-0.0.4.ebuild new file mode 100644 index 000000000000..a1bf0815e4e6 --- /dev/null +++ b/dev-haskell/http-date/http-date-0.0.4.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.2.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="HTTP Date parser/formatter" +HOMEPAGE="http://hackage.haskell.org/package/http-date" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-haskell/attoparsec:=[profile?] + >=dev-lang/ghc-6.10.4:=" +DEPEND="${RDEPEND} + test? ( >=dev-haskell/doctest-0.8 + dev-haskell/hspec + ) + >=dev-haskell/cabal-1.8" diff --git a/dev-haskell/http-date/http-date-0.0.6.1.ebuild b/dev-haskell/http-date/http-date-0.0.6.1.ebuild new file mode 100644 index 000000000000..6e34414bcf3f --- /dev/null +++ b/dev-haskell/http-date/http-date-0.0.6.1.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="HTTP Date parser/formatter" +HOMEPAGE="http://hackage.haskell.org/package/http-date" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-haskell/attoparsec:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( >=dev-haskell/doctest-0.8 + dev-haskell/hspec + dev-haskell/old-locale ) +" diff --git a/dev-haskell/http-date/http-date-0.0.6.ebuild b/dev-haskell/http-date/http-date-0.0.6.ebuild new file mode 100644 index 000000000000..68abb1f7e447 --- /dev/null +++ b/dev-haskell/http-date/http-date-0.0.6.ebuild @@ -0,0 +1,28 @@ +# 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.3 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="HTTP Date parser/formatter" +HOMEPAGE="http://hackage.haskell.org/package/http-date" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="dev-haskell/attoparsec:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( >=dev-haskell/doctest-0.8 + dev-haskell/hspec ) +" diff --git a/dev-haskell/http-date/metadata.xml b/dev-haskell/http-date/metadata.xml new file mode 100644 index 000000000000..5aed26408fb8 --- /dev/null +++ b/dev-haskell/http-date/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> + Fast parser and formatter for HTTP Date + </longdescription> +</pkgmetadata> |