summaryrefslogtreecommitdiff
path: root/dev-haskell/pwstore-fast
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2015-08-08 13:49:04 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2015-08-08 17:38:18 -0700
commit56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch)
tree3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-haskell/pwstore-fast
downloadgentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz
gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.xz
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/pwstore-fast')
-rw-r--r--dev-haskell/pwstore-fast/Manifest3
-rw-r--r--dev-haskell/pwstore-fast/metadata.xml18
-rw-r--r--dev-haskell/pwstore-fast/pwstore-fast-2.3.ebuild26
-rw-r--r--dev-haskell/pwstore-fast/pwstore-fast-2.4.1.ebuild30
-rw-r--r--dev-haskell/pwstore-fast/pwstore-fast-2.4.4.ebuild30
5 files changed, 107 insertions, 0 deletions
diff --git a/dev-haskell/pwstore-fast/Manifest b/dev-haskell/pwstore-fast/Manifest
new file mode 100644
index 00000000000..1feca11ff50
--- /dev/null
+++ b/dev-haskell/pwstore-fast/Manifest
@@ -0,0 +1,3 @@
+DIST pwstore-fast-2.3.tar.gz 6739 SHA256 7cc5f483e3d2e2e5e0c9f0b6f0e91eccc97eb6ed96b7e9ce00e55d0a80259404 SHA512 5c73c49269f2d9f93034ef469c36ffc2923eb6af66946bb7c9144c6291726a216091d0458a5f05cd986e748a845f1453578727094f897756f577beb25c693c60 WHIRLPOOL 11cb360c0e0e5a0abf5d93653e0a572e8b072921ae572c4f9e35329003ac5f5859cb1ee8c9cf4b19ab9f138b0cfb6103e7e6efeee7aba9ec86e9bfddab894a76
+DIST pwstore-fast-2.4.1.tar.gz 8756 SHA256 84dbb989ec889ba88ca4628502e905d65ca62f6a688ee21dea12342a745828cd SHA512 08a887bac703005e88a367c86b700d01b247966335bb37e9e7c31cfc16cdd1ce6b82fdd8f7e50fc30e62e78a2b58d890c3cf0f8046d8c27c064d21122bd8750d WHIRLPOOL a8c69be12162fb925cc22dd2b5fe778bbd392ff0fa0822879d66ee056181098559acf5cb2bc5cc13c7ea4a8cc383d797f4271fba760d82c8d45e3b8285fc88d7
+DIST pwstore-fast-2.4.4.tar.gz 8901 SHA256 7219af66b6f762d9dd5376b3b25393d4d6626e390e9d9c9f87f6e3f13ea7fbb2 SHA512 707381466d22b9d4cb45884be1df0c1567b11c1ed698b19c968f72b0b68898aa384df5f7c12fb5944ebc2bbcf28fd22c4cefed696d37503ac8b39ab9cdebb0f1 WHIRLPOOL a96081ab562022e13e2a1608f2ca152ae7aca55a601861f69a32d470d468135fd9be22804d3fa8193f713a9a28b20b9aa40ab1d28abb53f80f5651f3d0e67091
diff --git a/dev-haskell/pwstore-fast/metadata.xml b/dev-haskell/pwstore-fast/metadata.xml
new file mode 100644
index 00000000000..16bb6472b18
--- /dev/null
+++ b/dev-haskell/pwstore-fast/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>haskell</herd>
+ <longdescription>
+ To store passwords securely, they should be salted,
+ then hashed with a slow hash function. This library
+ uses PBKDF1-SHA256, and handles all the details.
+ It uses the cryptohash package for speed; if you need
+ a pure Haskell library, pwstore-purehaskell has the
+ exact same API, but uses only pure Haskell. It is
+ about 25 times slower than this package, but still
+ quite usable.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">PeterScott/pwstore</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-haskell/pwstore-fast/pwstore-fast-2.3.ebuild b/dev-haskell/pwstore-fast/pwstore-fast-2.3.ebuild
new file mode 100644
index 00000000000..cfdefac75f6
--- /dev/null
+++ b/dev-haskell/pwstore-fast/pwstore-fast-2.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=4
+
+# ebuild generated by hackport 0.2.18.9999
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="Secure password storage"
+HOMEPAGE="https://github.com/PeterScott/pwstore"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/base64-bytestring-0.1[profile?]
+ >=dev-haskell/cryptohash-0.6[profile?]
+ >=dev-haskell/random-1[profile?]
+ >=dev-lang/ghc-6.10.1"
+DEPEND="${RDEPEND}
+ >=dev-haskell/cabal-1.6"
diff --git a/dev-haskell/pwstore-fast/pwstore-fast-2.4.1.ebuild b/dev-haskell/pwstore-fast/pwstore-fast-2.4.1.ebuild
new file mode 100644
index 00000000000..9b4a4231e66
--- /dev/null
+++ b/dev-haskell/pwstore-fast/pwstore-fast-2.4.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2014 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="Secure password storage"
+HOMEPAGE="https://github.com/PeterScott/pwstore"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/base64-bytestring-0.1:=[profile?]
+ >=dev-haskell/binary-0.5:=[profile?]
+ >=dev-haskell/cryptohash-0.6:=[profile?]
+ >=dev-haskell/random-1:=[profile?]
+ >=dev-haskell/sha-1.6.1:=[profile?]
+ >=dev-lang/ghc-6.10.4:=
+"
+DEPEND="${RDEPEND}
+ >=dev-haskell/cabal-1.6.0.3
+"
diff --git a/dev-haskell/pwstore-fast/pwstore-fast-2.4.4.ebuild b/dev-haskell/pwstore-fast/pwstore-fast-2.4.4.ebuild
new file mode 100644
index 00000000000..14589f46833
--- /dev/null
+++ b/dev-haskell/pwstore-fast/pwstore-fast-2.4.4.ebuild
@@ -0,0 +1,30 @@
+# 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.4.9999
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour"
+inherit haskell-cabal
+
+DESCRIPTION="Secure password storage"
+HOMEPAGE="https://github.com/PeterScott/pwstore"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=dev-haskell/base64-bytestring-0.1:=[profile?]
+ >=dev-haskell/binary-0.5:=[profile?]
+ >=dev-haskell/byteable-0.1:=[profile?]
+ >=dev-haskell/cryptohash-0.6:=[profile?]
+ >=dev-haskell/random-1:=[profile?]
+ >=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+ >=dev-haskell/cabal-1.6
+"