Sync with portage [Mon Aug 26 12:46:47 MSK 2013].

mhiretskiy
root 11 years ago
parent ac254fca57
commit 285ff10a5b

@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/ctdb/ctdb-1.13.ebuild,v 1.4 2012/12/20 13:34:32 nativemad Exp $
# $Header: /var/cvsroot/gentoo-x86/dev-db/ctdb/ctdb-1.13.ebuild,v 1.5 2013/08/26 05:45:06 maekke Exp $
EAPI=4
@ -14,7 +14,7 @@ SRC_URI="http://dev.gentooexperimental.org/~scarabeus/${P}.tar.xz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
KEYWORDS="~alpha amd64 arm hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
IUSE=""
DEPEND="dev-libs/popt"

@ -1,2 +1,3 @@
DIST pgpool-II-3.2.3.tar.gz 1563129 SHA256 cb3b62957afe506e4b420bdc0b959f829d62c708fdce1a17d99a8521c586a5e5 SHA512 55748db315bb005efea173586845c0924eb1f4e5597d55a997446b6e9e01219575698b1b0d8de376e3aebc0cf497adbac19429908002f124aafee7e7bd269e01 WHIRLPOOL 0d7620d643924bb9347208abda27a15b62181756bdadea3ba823df8539f8541c6ad136f7301e8c1fd16a3a27a81e512979103e8b8202115b234ef7e4d46f1910
DIST pgpool-II-3.2.4.tar.gz 1627417 SHA256 c4ebc6fe1ff0936bcfdfcd0b23e07b956bab24b7b5ee744fc9347c091f08a818 SHA512 fd05bffac69ee4a8c51ef87a04ccc02027422780474dd39ffbd966570a1deaef0d432fc58c92d62eed863740f5f482106df1f4df69f71aec5df0a2619a65fc96 WHIRLPOOL 1a70a7ac7cd7481177b2153f95dad80aac155030850dc1d930497f2fa50b29dff16c63a53eeb9c4d643e6b28762a240e58af408cfa980376c646a1514fcc3041
DIST pgpool-II-3.2.5.tar.gz 1643267 SHA256 aecac952fd3d292584c9aa359d72f89b144c29f45c9f848cb030e46215a814f7 SHA512 c6dd033462de7f56724f7416fca3ee3e25835f113604fb03b97deee2e3ab25a07cfd9aea33ec36211aa0ec41c2bcea31ca9befe0cfe8f6389a39c2f6495388b6 WHIRLPOOL 5db077d51c5aa8692ba23c0f5ad3b3291c42448724cf633db13850d9b22df256c2aedc15b95fe74a33e486e09f4cc6a37daed0d39becff38acd40fa52b78ab8d

@ -0,0 +1,107 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/pgpool2/pgpool2-3.2.5.ebuild,v 1.1 2013/08/26 05:28:36 patrick Exp $
EAPI=4
MY_P="${PN/2/-II}-${PV}"
inherit base user
DESCRIPTION="Connection pool server for PostgreSQL"
HOMEPAGE="http://www.pgpool.net/"
SRC_URI="http://www.pgpool.net/download.php?f=${MY_P}.tar.gz -> ${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="memcached pam ssl static-libs"
RDEPEND="
dev-db/postgresql-base
memcached? ( dev-libs/libmemcached )
pam? ( sys-auth/pambase )
ssl? ( dev-libs/openssl )
"
DEPEND="${RDEPEND}
sys-devel/bison
!!dev-db/pgpool
"
S=${WORKDIR}/${MY_P}
pkg_setup() {
enewgroup postgres 70
enewuser pgpool -1 -1 -1 postgres
# We need the postgres user as well so we can set the proper
# permissions on the sockets without getting into fights with
# PostgreSQL's initialization scripts.
enewuser postgres 70 /bin/bash /var/lib/postgresql postgres
}
src_prepare() {
epatch "${FILESDIR}/pgpool_run_paths.patch"
local pg_config_manual="$(pg_config --includedir)/pg_config_manual.h"
local pgsql_socket_dir=$(grep DEFAULT_PGSOCKET_DIR "${pg_config_manual}" | \
sed 's|.*\"\(.*\)\"|\1|g')
local pgpool_socket_dir="$(dirname $pgsql_socket_dir)/pgpool"
sed "s|@PGSQL_SOCKETDIR@|${pgsql_socket_dir}|g" \
-i *.conf.sample* pool.h || die
sed "s|@PGPOOL_SOCKETDIR@|${pgpool_socket_dir}|g" \
-i *.conf.sample* pool.h || die
}
src_configure() {
local myconf
use memcached && \
myconf="--with-memcached=\"${EROOT%/}/usr/include/libmemcached\""
use pam && myconf+=' --with-pam'
econf \
--disable-rpath \
--sysconfdir="${EROOT%/}/etc/${PN}" \
$(use_with ssl openssl) \
$(use_enable static-libs static) \
${myconf}
}
src_compile() {
emake
emake -C sql
}
src_install() {
emake DESTDIR="${D}" install
emake DESTDIR="${D}" -C sql install
cd "${S}"
# `contrib' moved to `extension' with PostgreSQL 9.1
local pgslot=$(postgresql-config show)
if [[ ${pgslot//.} > 90 ]] ; then
cd "${ED%/}$(pg_config --sharedir)"
mv contrib extension || die
cd "${S}"
fi
newinitd "${FILESDIR}/${PN}.initd" ${PN}
newconfd "${FILESDIR}/${PN}.confd" ${PN}
# Documentation
dodoc NEWS TODO doc/where_to_send_queries.{pdf,odg}
dohtml -r doc
# Examples and extras
insinto "/usr/share/${PN}"
doins doc/{pgpool_remote_start,basebackup.sh,recovery.conf.sample}
mv "${ED%/}/usr/share/${PN/2/-II}" "${ED%/}/usr/share/${PN}" || die
# One more thing: Evil la files!
find "${ED}" -name '*.la' -exec rm -f {} +
}

@ -1,2 +1,4 @@
DIST slony1-2.1.3-docs.tar.bz2 1314210 SHA256 8588df1b06086809ce0fef7e1348405bf701c959e2b0affda9d6305f201d6fb4 SHA512 a37bc8432d19833c9cbcc7494c783fabce6d2b5feedf4001e031ff5e5039630497e9b7e4ca4d237d53f41109368cd33708400e64f0c2f45cef3a9916ad9cf4e7 WHIRLPOOL 7d7e0db61956919f5d4fdf96a946b81e9b3502f2c8e5f6fc9b525cb89c37d44cadf349f607fd13a89561c87d1ca2bd722e4ca57b250f809b9c25cd1c56bd523b
DIST slony1-2.1.3.tar.bz2 1512693 SHA256 048b94c990afceb892f8f6631268bb66e93a3c630afc694b3a09f051c338790b SHA512 f02320e3bb85848b93bc43a7d4e0dbb367afcb8af2100cda840888dcd219fead78bd1ac927493bd173cef2bc1195ba4f860679eed0606dd0a2cf9652d671b493 WHIRLPOOL 51641f4dfa78210ab0ecc2827932dc06389867c18df6dfb61d8b43c03ad00d2ac09c529e4171ece07139a803ef45f12c15ac14da39e6bb269bb5a0d7a0270943
DIST slony1-2.1.4-docs.tar.bz2 1360684 SHA256 e7d8c1939e0e2cf34614940f62c4fc0ce1a52b6b495d8cb2dc2d249756257fc5 SHA512 87d9db938a849171c15d70213ac770f0daf34a930e141411c8a0a9d5f5ca6375c6c0a2ebd88edfbf4144dc81ccaab6494ae8762e3bff863551aa9846d6abc545 WHIRLPOOL 14c455ddcfb64d26d1613d0a6372cd86ad2906d7c1ea438c64075292920cd53b80601a8f5c45d0605b2c878b7dbdc308a385eadd02d557f6d982eedecd0c764a
DIST slony1-2.1.4.tar.bz2 1515755 SHA256 90dc746bb9f12a051f9f563365e693ffd81f07a2353debfc4b8a4d0884ca72a4 SHA512 b882146a158adee27f360fc34d3c64144efe3c3a7d63574a4450cb1eb3dac7d75df19d17e75ffc72f656d27b5c5b7fc64bc536de9753a36fe96848b562e42883 WHIRLPOOL c0b95f72049b7f90caf1c2259c8f97411f0b1f1d5c9a6cc4fd6b1b2e677dec3fbbea84ffaffb0ba15caa40203923c8272ac6cccae8e08a51f83c62b765ce2580

@ -0,0 +1,74 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/slony1/slony1-2.1.4.ebuild,v 1.1 2013/08/26 05:27:35 patrick Exp $
EAPI="4"
inherit eutils versionator
IUSE="doc perl"
DESCRIPTION="A replication system for the PostgreSQL Database Management System"
HOMEPAGE="http://slony.info/"
# ${P}-docs.tar.bz2 contains man pages as well as additional documentation
MAJ_PV=$(get_version_component_range 1-2)
SRC_URI="http://main.slony.info/downloads/${MAJ_PV}/source/${P}.tar.bz2
http://main.slony.info/downloads/${MAJ_PV}/source/${P}-docs.tar.bz2"
LICENSE="BSD GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
DEPEND="|| (
dev-db/postgresql-server:9.2
dev-db/postgresql-server:9.1
dev-db/postgresql-server:9.0
dev-db/postgresql-server:8.4
dev-db/postgresql-server:8.3
)
dev-db/postgresql-base[threads]
perl? ( dev-perl/DBD-Pg )
"
pkg_setup() {
local PGSLOT="$(postgresql-config show)"
if [[ ${PGSLOT//.} < 83 ]] ; then
eerror "You must build ${CATEGORY}/${PN} against PostgreSQL 8.3 or higher."
eerror "Set an appropriate slot with postgresql-config."
die "postgresql-config not set to 8.3 or higher."
fi
# if [[ ${PGSLOT//.} > 90 ]] ; then
# ewarn "You are building ${CATEGORY}/${PN} against a version of PostgreSQL greater than 9.0."
# ewarn "This is neither supported here nor upstream."
# ewarn "Any bugs you encounter should be reported upstream."
# fi
}
src_prepare() {
epatch "${FILESDIR}/${PN}-2.1.2-ldflags.patch"
}
src_configure() {
local myconf
use perl && myconf='--with-perltools'
econf ${myconf}
}
src_install() {
emake DESTDIR="${D}" install
dodoc HISTORY-1.1 INSTALL README SAMPLE TODO UPGRADING doc/howto/*.txt
# gone:
#doman "${S}"/doc/adminguide/man{1,7}/*
if use doc ; then
cd "${S}"/doc
dohtml -r *
fi
newinitd "${FILESDIR}"/slony1.init slony1
newconfd "${FILESDIR}"/slony1.conf slony1
}

@ -0,0 +1 @@
DIST asn1-data-0.7.1.tar.gz 17500 SHA256 f9a8a8ec41e89ebb4af6bd6b8a4c45515e44d7d61524d02b52881bfe7caf4783 SHA512 dc6021daf15e5f9b93703641780c6d81c6b385d2127bcc2f735ecaf54d1be5163ad5e9ae291a3e223ff05cf03e8bbf11af0791ee810a0ba174e9cc9e9fd910d0 WHIRLPOOL 73a1e7f32c0e98bf52f1641214c6b69ae4336e24e0b0ac08eda04dc48f03085eb1a7c9e3ab2ddea9e25001e1841efb25b70adaefdc23f37130fc69ed8a46bc76

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/asn1-data/asn1-data-0.7.1.ebuild,v 1.1 2013/08/26 04:19:05 qnikst Exp $
EAPI=4
# ebuild generated by hackport 0.2.18.9999
CABAL_FEATURES="bin lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="ASN1 data reader and writer in RAW, BER and DER forms"
HOMEPAGE="http://github.com/vincenthz/hs-asn1-data"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-haskell/cereal[profile?]
dev-haskell/mtl[profile?]
>=dev-haskell/text-0.11[profile?]
>=dev-lang/ghc-6.8.2"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
ASN1 data reader and writer in raw form with supports for high level forms of ASN1 (BER, CER and DER).
All interfaces use the enumerator interface.
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST asn1-types-0.2.0.tar.gz 5248 SHA256 6dcf217c74298e6d08365c90757fdd8730ef4c24a534696d1275af3f6e79a00c SHA512 da28b3565c74eba8faf5de4f9cb24d90242412d4fbc358199b803c1f0b50c6c4dca89aada813d7126fb482300cfd3d43130be2f700d4c7943de2966870936cd9 WHIRLPOOL 7c08063dfb5a0d9b024f87810c100be0b964aa29a86caee70330953150aa188f652a678862a3a957b0602b3fb87a5029b43c4be1a10ca50f105db444d41113a7

@ -0,0 +1,23 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/asn1-types/asn1-types-0.2.0.ebuild,v 1.1 2013/08/26 04:24:55 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="ASN.1 types"
HOMEPAGE="http://github.com/vincenthz/hs-asn1-types"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-lang/ghc-6.12.1:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
ASN.1 standard types
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST blaze-builder-conduit-1.0.0.tar.gz 3952 SHA256 8665a9a4f2e627968b6b20a16173af357c2e6b4d0e9325384b37f75626580097 SHA512 3facc034c7e09c8b83bed7ca80582d5ca454ef31f0f0fe3847d7150f9f9307fc8fc6bb8c870eadaccabb739069e19aee6c0db202a2429faa8bab4b41d684e7aa WHIRLPOOL d5fe8b6a81349bf73309ee65a7f623ca6918fb3fac6b2a33c4673753a1830a51c010506b00735a492df1b1ab941c4c515d594123de86d3a8545b8c74fb84b041

@ -0,0 +1,32 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/blaze-builder-conduit/blaze-builder-conduit-1.0.0.ebuild,v 1.1 2013/08/26 04:21:21 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Convert streams of builders to streams of bytestrings."
HOMEPAGE="http://github.com/snoyberg/conduit"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-haskell/blaze-builder-0.2.1.4:=[profile?]
<dev-haskell/blaze-builder-0.4:=[profile?]
=dev-haskell/conduit-1.0*:=[profile?]
>=dev-haskell/text-0.11:=[profile?]
>=dev-haskell/transformers-0.2.2:=[profile?]
<dev-haskell/transformers-0.4:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8
test? ( >=dev-haskell/hspec-1.3
dev-haskell/quickcheck
)"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Convert streams of builders to streams of bytestrings.
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST cipher-aes-0.1.8.tar.gz 27629 SHA256 ae87a9f7cd198745a931a8285a3681fdc42216ac450857cd5ba983ba5492359c SHA512 2fbb370380e801330ed03d068230b577b8e6c1a3b5c74cc02d11e8c909235c283029300b2fc0ebc189d9a883e59f2f47b94552c49480c726d0fccd943d3c6025 WHIRLPOOL a6622b007ef1653e5c980f890f16928bffa859000ac6c059e6370adc4fcca59553612b71071168afd919677b14a8c388bfdc2c30cba8018e4a141cf192b6e9d0

@ -0,0 +1,27 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cipher-aes/cipher-aes-0.1.8.ebuild,v 1.1 2013/08/26 03:55:03 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Fast AES cipher implementation with advanced mode of operations"
HOMEPAGE="http://github.com/vincenthz/hs-cipher-aes"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8
test? ( >=dev-haskell/quickcheck-2
>=dev-haskell/test-framework-0.3.3
>=dev-haskell/test-framework-quickcheck2-0.2.9
)"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Fast AES cipher implementation with advanced mode of operations
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST clientsession-0.9.0.2.tar.gz 6988 SHA256 d18e6dfd562899f3e5cb833b26d3d3eea1baade3a1293539ba5b4d162d08836e SHA512 b6642e6072f6d4a2dcfa2136655cce0c34c9cae8ed3240448db5b0086f3b6a589e330d137878969a9dbcc4bd7b903d20e7d16de244a3d7d51d0cb7f0a72d5cab WHIRLPOOL 405357f72e5b866605d93b0eeeb84288ba99b79021f3ba43653a4f8b265e19819ccb8e75ff8caa08699d8c0c3493e5e8ea3d9802950871981b518dfe14196388

@ -0,0 +1,41 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/clientsession/clientsession-0.9.0.2.ebuild,v 1.1 2013/08/26 04:14:38 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.3.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Securely store session data in a client-side cookie."
HOMEPAGE="http://github.com/yesodweb/clientsession/tree/master"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND=">=dev-haskell/base64-bytestring-0.1.1.1:=[profile?]
>=dev-haskell/cereal-0.3:=[profile?]
>=dev-haskell/cipher-aes-0.1.7:=[profile?]
>=dev-haskell/cprng-aes-0.2:=[profile?]
>=dev-haskell/crypto-api-0.8:=[profile?]
>=dev-haskell/entropy-0.2.1:=[profile?]
=dev-haskell/skein-1.0*:=[profile?]
>=dev-haskell/tagged-0.1:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8
test? ( >=dev-haskell/hspec-1.3
dev-haskell/hunit
>=dev-haskell/quickcheck-2
dev-haskell/transformers
)"
src_configure() {
haskell-cabal_src_configure \
$(cabal_flag test test)
}

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Achieves security through AES-CTR encryption and
Skein-MAC-512-256 authentication. Uses Base64
encoding to avoid any issues with characters.
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST cmdargs-0.10.5.tar.gz 61293 SHA256 30b1dedebbcf3659fcf269b092129b07d04784ab33ef0498916afe6e78496004 SHA512 55bf57c25f63b9a70a54e99d4f170b53b0525043966801eb44b7becc4b99cfbfef0dd4a690339797c57f7970e5ae88953742810eac622360b3d2e6363e473ece WHIRLPOOL 21c4e29f16a7186d93d5f174eae3b056ffc18f2285ba86e46df6ca5c4c24e9c203790b248b27f862ac41874e41239f83c4bcec83d95744ec39c1c5c36672ce1c

@ -0,0 +1,30 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cmdargs/cmdargs-0.10.5.ebuild,v 1.1 2013/08/26 04:31:59 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="bin lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Command line argument processing"
HOMEPAGE="http://community.haskell.org/~ndm/cmdargs/"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="+quotation testprog"
RDEPEND=">=dev-haskell/transformers-0.2:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"
src_configure() {
haskell-cabal_src_configure \
$(cabal_flag quotation quotation) \
$(cabal_flag testprog testprog)
}

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
This library provides an easy way to define command line parsers. Most users
will want to use the &quot;System.Console.CmdArgs.Implicit&quot; module, whose
documentation contains an example.
* &quot;System.Console.CmdArgs.Explicit&quot; provides a way to write command line
parsers for both single mode programs (most programs) and multiple
mode programs (e.g. darcs or cabal). Parsers are defined by constructing
a data structure.
* &quot;System.Console.CmdArgs.Implicit&quot; provides a way to concisely define
command line parsers, up to three times shorter than getopt. These parsers
are translated into the Explicit data type.
* &quot;System.Console.CmdArgs.GetOpt&quot; provides a wrapper allowing compatiblity
with existing getopt parsers, mapping to the Explicit data type.
For a general reference on what command line flags are commonly used,
see &lt;http://www.faqs.org/docs/artu/ch10s05.html&gt;.
</longdescription>
<use>
<flag name="testprog">Build the test program</flag>
<flag name="quotation">Build quote module</flag>
</use>
</pkgmetadata>

@ -0,0 +1 @@
DIST cookie-0.4.0.1.tar.gz 3230 SHA256 73967e5d4a0fe43248db582ace5f0f4cb8c7085748ea90e1dc312f3e137e6506 SHA512 36d8e64a993117586419bc15075aeff00a6c5a2ec950329f5c5ac3ae85f6362995d466680e95f242c98fa761b458e0ff24b1387aff60b78fa06e5ceedca093cf WHIRLPOOL 9e10acedbc39cac9599788b7068510bf9a362f4da5508689e4f69af1e92b9f3b262150af59499f2e473652c1e546c3f4f7f38450e63b5b0cc913f3b98dec7e19

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cookie/cookie-0.4.0.1.ebuild,v 1.1 2013/08/26 04:42:43 qnikst Exp $
EAPI=4
# ebuild generated by hackport 0.2.18.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="HTTP cookie parsing and rendering"
HOMEPAGE="http://github.com/snoyberg/cookie"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-haskell/blaze-builder-0.2.1[profile?]
dev-haskell/data-default[profile?]
>=dev-haskell/text-0.7[profile?]
>=dev-lang/ghc-6.10.1"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
HTTP cookie parsing and rendering
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST crypto-numbers-0.1.3.tar.gz 12074 SHA256 a1176578b575dae470deab6214c3cb404ffcbc2c7b40ea46c9c5d3e1957db484 SHA512 7ecba662cdcb22aaceebf98edd0298af1e578a01efb0bc1ca935d9e604c8761f5829fc7651df2cded212a390553df6ef89d394a76c64faef52d6a295858106d2 WHIRLPOOL 8f641fc6687a17d901ebe2d6db5cc399fb5f05966d43575dc8a29fa7aabae26f395d0859a49c8e6e6033a3c7c7d644c849cfec5a5100b64abbffddda50165e48

@ -0,0 +1,31 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/crypto-numbers/crypto-numbers-0.1.3.ebuild,v 1.1 2013/08/26 04:34:45 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Cryptographic numbers: functions and algorithms"
HOMEPAGE="http://github.com/vincenthz/hs-crypto-numbers"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="=dev-haskell/crypto-random-api-0.2*:=[profile?]
dev-haskell/vector:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
test? ( dev-haskell/hunit
>=dev-haskell/quickcheck-2
>=dev-haskell/test-framework-0.3.3
dev-haskell/test-framework-hunit
>=dev-haskell/test-framework-quickcheck2-0.2.9
)
>=dev-haskell/cabal-1.8"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Cryptographic numbers: functions and algorithms
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST crypto-pubkey-types-0.4.0.tar.gz 9717 SHA256 5423f13ddbefb28ff1e8ca730eb00ea85bc8b8661ff620574563bf0edafe572d SHA512 fb9adeb6843a902fb7cbfe9e6aa61b2d19d98c193a74f90b67720c37fd16f4f57f1d57450b2fb84bd40d96fad240d627968df65a92d25569d46a4ea421e52a77 WHIRLPOOL 38d9e39e1b2f71169b6aab25908aaf3ae3e070ac687aeb1f96d201c3641ab4f2ebf3e6827cb7850d746d2f6f45374caeb52e312c940766a6aa12547987148157

@ -0,0 +1,25 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/crypto-pubkey-types/crypto-pubkey-types-0.4.0.ebuild,v 1.1 2013/08/26 04:26:17 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Generic cryptography Public keys algorithm types"
HOMEPAGE="http://github.com/vincenthz/hs-crypto-pubkey-types"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-haskell/asn1-types-0.1:=[profile?]
<dev-haskell/asn1-types-0.3:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Generic cryptography public keys algorithm types
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST crypto-pubkey-0.1.4.tar.gz 38847 SHA256 c1ce4784c71b2881099e214b40c7bd680e55423991e3f27f5867b7676e1c508d SHA512 b38e69aa42b68019136646902225dd80918919bd55f2525ba1252580bde7fd5185f1324bf93121e7b65a8ae0a9d71a6e5c727c720bbfa4a02e7cf17b2a17663c WHIRLPOOL 019a54cabbae563f9a61dbffa5cc368d6427e55e18419dee27c389dca512d5354a383bd983b1fb940f66b38ec58990129e750690fbdd8f81eaf26d3df154847e

@ -0,0 +1,34 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/crypto-pubkey/crypto-pubkey-0.1.4.ebuild,v 1.1 2013/08/26 04:36:43 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Public Key cryptography"
HOMEPAGE="http://github.com/vincenthz/hs-crypto-pubkey"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-haskell/crypto-numbers:=[profile?]
=dev-haskell/crypto-pubkey-types-0.4*:=[profile?]
=dev-haskell/crypto-random-api-0.2*:=[profile?]
>=dev-haskell/cryptohash-0.8:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8
test? ( dev-haskell/hunit
>=dev-haskell/quickcheck-2
>=dev-haskell/test-framework-0.3.3
dev-haskell/test-framework-hunit
>=dev-haskell/test-framework-quickcheck2-0.2.9
)"

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Public Key cryptography
Supports RSA PKCS15, RSA OAEP, RSA PSS, DSA, ElGamal signature.
Also have primitive support for Diffie Hellman, and ElGamal encryption
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST crypto-random-api-0.2.0.tar.gz 3397 SHA256 56e9777061bd9ce553683d097ba3a11fdc371724060b62ca103f1f291f9f897c SHA512 8f7df05e54e053456e3ebe9394b19beb2a37dfed30cfb5fb673f591415dc6fabe105af51e838fbe73ef078906d94562080ca465b0c6b4e1537bd4a6e066244f7 WHIRLPOOL 415f56d3757940ff9178f94c33a3ce43e8697db26e3b01ae4806fc9e2eaf332f18a490e3959bf97132bb26bf9d4f489ce501685c8972500c904923682b88d236

@ -0,0 +1,24 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/crypto-random-api/crypto-random-api-0.2.0.ebuild,v 1.1 2013/08/26 04:02:15 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Simple random generators API for cryptography related code"
HOMEPAGE="http://github.com/vincenthz/hs-crypto-random-api"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-haskell/entropy:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Simple random generators API for cryptography related code
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST data-endian-0.0.1.tar.gz 2454 SHA256 94835bba0e907d17030eae7af62a14480a14b35f97748109b847a6c32b454fb4 SHA512 1f6d096c574fe9d09104c884a67a44cdde2e436fa27e9614d077122ef6f5e8f28eaa81f48dbf09f7dcdf95065c9971d1342c31b887280a51334c38a29031bbf0 WHIRLPOOL 682ae07b9851df39f439c93eebf13be533b62857220d2bdf609247f2ca6121e80e0dcbb33dd17a113e47b926f904e82ec10d5d5a74bbe059f98bff76dcca50c2

@ -0,0 +1,23 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/data-endian/data-endian-0.0.1.ebuild,v 1.1 2013/08/26 03:48:58 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Endian-sensitive data"
HOMEPAGE="https://github.com/mvv/data-endian"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6.0"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
This package provides helpers for converting endian-sensitive data.
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST dns-0.3.8.tar.gz 11313 SHA256 b8f14ad823ddd5300249410ae290c8c867593117f11492fb6da75f9c507559f4 SHA512 dbd6d042866e1861a47660c7daba1f29ee445a48eae3c25e05306878a74f9758587430296222e3f67062a3c173d96dab833a6d43b5d3237d614cfd2bad92be9d WHIRLPOOL 0981de2dd3f90a4637613707348cb3fd3fbf265b9c2ddadbbd999d48977962010fd7b9a352e3eaeceeeb8248e1e082ebb1e018a38709a0fe7a9622f361615e70

@ -0,0 +1,36 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/dns/dns-0.3.8.ebuild,v 1.1 2013/08/26 03:46:25 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.3.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="DNS library in Haskell"
HOMEPAGE="http://hackage.haskell.org/package/dns"
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-haskell/attoparsec-conduit:=[profile?]
dev-haskell/binary:=[profile?]
dev-haskell/blaze-builder:=[profile?]
dev-haskell/conduit:=[profile?]
>=dev-haskell/iproute-1.2.4:=[profile?]
dev-haskell/mtl:=[profile?]
dev-haskell/network:=[profile?]
dev-haskell/network-bytestring:=[profile?]
dev-haskell/network-conduit:=[profile?]
dev-haskell/random:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.10
test? ( dev-haskell/hspec
)"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
DNS library for clients and servers.
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST encoding-0.6.7.2.tar.gz 832564 SHA256 0d607c6886b4ac8498fc0c97565bda6ef068d5626f87b642616cb64d042a3f2c SHA512 2a258cb20d49ddc3f1c78f7392e4440d503774680f0da0d297ce27466bace8303b1364e9b4fc5937ca6b1753d0648a6ff8cfc99dd77d52d851dfe9e0481a3cb2 WHIRLPOOL 3533acfbf8181daf6dff597e98924765abaada7769e93054490d2cdb2f51788cba6fdd314b0ccc474536044b687a10179129d333bbc12e5347f60621a9dbcaff

@ -0,0 +1,42 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/encoding/encoding-0.6.7.2-r2.ebuild,v 1.1 2013/08/26 04:58:10 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.1.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="A library for various character encodings"
HOMEPAGE="http://code.haskell.org/encoding/"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-haskell/binary:=[profile?]
dev-haskell/extensible-exceptions:=[profile?]
>=dev-haskell/haxml-1.22:=[profile?]
<dev-haskell/haxml-1.25:=[profile?]
dev-haskell/mtl:=[profile?]
dev-haskell/regex-compat:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"
src_prepare() {
cabal_chdeps \
'binary < 0.6' 'binary' \
'HaXml >= 1.22 && < 1.24' 'HaXml >= 1.22 && < 1.25'
}
src_configure() {
haskell-cabal_src_configure \
--flag=systemencoding \
--flag=newghc \
--flag=splitbase
}

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Haskell has excellect handling of unicode, the Char type covers all unicode chars. Unfortunatly, there&#39;s no possibility to read or write something to the outer world in an encoding other than ascii due to the lack of support for encodings. This library should help with that.
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST failure-0.2.0.1.tar.gz 1771 SHA256 cd01e1d6f42396feb5262c7e4cc0aeb3ec73d5ec8dbaa5b96c8dc82e96166616 SHA512 33fc4754adddd218933884faf625c640f45fd24e4f14e4e2d1019d2b1188b698475205120e0dbc60ffe1adc864ef7b3285d1ba06731ab5ada49727d9de7b0e76 WHIRLPOOL be02b6c3e711c1226f47de1201f9c3de64c19dcce26ce74dd378ccd7977e3d3dc8f1ad74c74a41ac8e5198ba4caeaf2c01b3dc004e640da42dbb9a79c0829820

@ -0,0 +1,24 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/failure/failure-0.2.0.1.ebuild,v 1.1 2013/08/26 04:44:21 qnikst Exp $
# ebuild generated by hackport 0.2.17.9999
EAPI=4
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="A simple type class for success/failure computations."
HOMEPAGE="http://www.haskell.org/haskellwiki/Failure"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-haskell/transformers-0.2[profile?] <dev-haskell/transformers-0.4[profile?]
>=dev-lang/ghc-6.10.1"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
A simple type class for success/failure computations.
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST http-types-0.8.0.tar.gz 11520 SHA256 e544fa89d83f4c6fa9e2a23a5389df59ee6824ded0b04a47e7d346c8df7fa191 SHA512 d622126715e2dc367bafea00925a620b1e01a612778f48f0ca09b94415f10f46a57039e1baf83645d831bbd4cff472d046e23dc13614e5644ad1bbad8920a8c9 WHIRLPOOL 8ec42a9be6805b2ab19cf72ca06517a7ae7b8b66c7e2655bfc344664d8c58829cec495d673f9a0fe98edd547bce0da4c15ba870f4b5c07be66c98a9585c4e410

@ -0,0 +1,32 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/http-types/http-types-0.8.0.ebuild,v 1.1 2013/08/26 04:49:11 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Generic HTTP types for Haskell (for both client and server code)."
HOMEPAGE="https://github.com/aristidb/http-types"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-haskell/blaze-builder-0.2.1.4:=[profile?]
<dev-haskell/blaze-builder-0.4:=[profile?]
>=dev-haskell/case-insensitive-0.2:=[profile?]
<dev-haskell/case-insensitive-1.1:=[profile?]
>=dev-haskell/text-0.11.0.2:=[profile?]
<dev-haskell/text-0.12:=[profile?]
>=dev-lang/ghc-6.12.1:="
DEPEND="${RDEPEND}
test? ( >=dev-haskell/hspec-1.3
dev-haskell/quickcheck
)
>=dev-haskell/cabal-1.8"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Generic HTTP types for Haskell (for both client and server code).
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST idna-0.2.tar.gz 2372 SHA256 df5b59227a56b7492dd671579493dc9d4c78dcd5351201e8bfad7be984ad813e SHA512 cfbe78f2b21059802e139420120a6bce8c09f58786258c874e73b0f01f953cd07d2cedf7c2d19677b0dbe327db7ce4b39a6569fd624cfcc02b6b249e07051b81 WHIRLPOOL 7de7e839fc445c2223e45f341ffcff198b7cc063e8be4bf448c00413cbb7c5fa7cdae7d63936419c55f74c547d18f110eb4f76f9b14c485e5826c7ab08040c96

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/idna/idna-0.2.ebuild,v 1.1 2013/08/26 06:07:11 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Implements IDNA (RFC 3490)."
HOMEPAGE="http://hackage.haskell.org/package/idna"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-haskell/punycode-2.0:=[profile?]
>=dev-haskell/stringprep-0.1.2:=[profile?]
>=dev-haskell/text-0.1:=[profile?]
>=dev-lang/ghc-7.0.1:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Implements IDNA - Internationalized Domain Names in Applications (RFC 3490).
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST iproute-1.2.11.tar.gz 9370 SHA256 046a02b755ef99aa6da9e8521f658b67f34dd0cf0024830209b5b8409636c991 SHA512 1085f0c3acad9d79a2237f91643184342a3845b0dc07580b61c28566f97779562156543bc2765c0087b84993054626ad8a954c72704086ff61a13d7d7fabd221 WHIRLPOOL 7c2780827cf0e597b26b07d0145a596a8ff72d24bf18d90c9c304e742728938d73a4c64bfd4397e29b04fa64a597066ab7dd585f086a27e65061831d21ee77d4

@ -0,0 +1,31 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/iproute/iproute-1.2.11.ebuild,v 1.1 2013/08/26 03:45:15 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="IP Routing Table"
HOMEPAGE="http://www.mew.org/~kazu/proj/iproute/"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-haskell/appar:=[profile?]
dev-haskell/byteorder:=[profile?]
dev-haskell/network:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.10
test? ( >=dev-haskell/doctest-0.9.3
dev-haskell/hspec
dev-haskell/quickcheck
dev-haskell/safe
)"

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
IP Routing Table is a tree of IP ranges
to search one of them on the longest
match base. It is a kind of TRIE with one
way branching removed. Both IPv4 and IPv6
are supported.
</longdescription>
</pkgmetadata>

@ -0,0 +1 @@
DIST mime-types-0.1.0.3.tar.gz 10953 SHA256 c19b2acd46c1843f15d273e8a09f7fd7b82a6ac83a3361794d3a5b2a199ef057 SHA512 10bdd7ed39af89645bcc2daef6d234d571811cda51583e93df43039c09a5bd4b0d5a6f23e7ac8bc91e471c8bbe8b2124e4db48b88436f5c22b96a065f925b206 WHIRLPOOL 33b5a8d0f140e135df972dd639b814ac74d72fa1ec55584ce42706aca19de6df33b64c31552e02f66e8dd50b3e37dbfa69a49768b4cff20d1b3ee280d98759d3

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Basic mime-type handling types and functions
</longdescription>
</pkgmetadata>

@ -0,0 +1,24 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/mime-types/mime-types-0.1.0.3.ebuild,v 1.1 2013/08/26 04:52:36 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Basic mime-type handling types and functions"
HOMEPAGE="https://github.com/yesodweb/wai"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-haskell/text:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8"

@ -0,0 +1 @@
DIST network-conduit-1.0.0.tar.gz 5853 SHA256 63de6be7775d99a56485be57af965aea957c228ea9cae8389b20d03bb9796f9a SHA512 9f16e529da022d2a4049fe9d41f8df0eb1fb34b4ad80f755944074b4016688169f3efd78a4ad2c052c1951ddccb728552077d88b533ed8fde1425c469a27f7c4 WHIRLPOOL 69a44c6ddf683cff0fb8156eceef19fcd4c67dce745045f7740ec31da4800dbefc0354486c65d89325f89a71764fc519f31009ca3f0220649eee4041a33bf674

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Stream socket data using conduits.
</longdescription>
</pkgmetadata>

@ -0,0 +1,32 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/network-conduit/network-conduit-1.0.0.ebuild,v 1.1 2013/08/26 03:43:57 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Stream socket data using conduits."
HOMEPAGE="http://github.com/snoyberg/conduit"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="=dev-haskell/conduit-1.0*:=[profile?]
>=dev-haskell/lifted-base-0.1:=[profile?]
=dev-haskell/monad-control-0.3*:=[profile?]
>=dev-haskell/transformers-0.2.2:=[profile?]
<dev-haskell/transformers-0.4:=[profile?]
>=dev-lang/ghc-6.10.4:=
<dev-haskell/network-2.2.3:=[profile?]
>=dev-haskell/network-2.2.1:=[profile?]
=dev-haskell/network-bytestring-0.1.3*:=[profile?]
"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8"

@ -0,0 +1 @@
DIST network-info-0.2.0.3.tar.gz 5644 SHA256 42e79146828b3e7dfeca884a4be4fe79f7a84bc4471d8cf1ecf7ea3c55a1dc12 SHA512 49aa9c80ef91025f6cb0bcae34afdc7e41f15b56f24b55fe6c622eea3890db9c44bf461819daf961c6b02bd255cadae6eeca22a64398852b21af9f777a06604f WHIRLPOOL ac59e3015155f4bbe640ba6612eb23974fd48d48d7a6cad2f049dc6fea20fdadaa84b66765ec4f00e61c4d1aaadcf61a07990316a6fa17047a9378eb53265113

@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
This library provides simple read-only access to the
local computer&#39;s networking configuration. It is
currently capable of getting a list of all the network
interfaces and their respective IPv4, IPv6 and MAC
addresses.
network-info has been tested and is known to work on
Ubuntu 10.10, FreeBSD 9.0, Mac OS X 10.6.4 and Windows
XP/7. It probably works on other flavours of Linux,
OS X, FreeBSD and Windows as well.
</longdescription>
</pkgmetadata>

@ -0,0 +1,23 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/network-info/network-info-0.2.0.3.ebuild,v 1.1 2013/08/26 03:50:54 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Access the local computer's basic network configuration"
HOMEPAGE="http://github.com/jystic/network-info"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -0,0 +1 @@
DIST pem-0.1.2.tar.gz 3577 SHA256 159d8dfa67b4b05d511fbd1a749a7488a8e4fd8a06c92f4771d4f0b4cce05adc SHA512 f9bccbbbed160ba662163c90968be71401a1777fbad74bd6b12a4eb23ca61cadd81f92b80a7e5a84a6a76cf15d83aa81ffd5f1fb2fe444679edd4157a8fa388a WHIRLPOOL b45748752c623119519395bd8a5d95986aa4c0bec47435dcecfe6ef08213341435ab82d39b38f6c7a3efc2c8cfd2f207fe298fd60e453ed2f3fc5975684642ec

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Privacy Enhanced Mail (PEM) format reader and writer.
</longdescription>
</pkgmetadata>

@ -0,0 +1,31 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/pem/pem-0.1.2.ebuild,v 1.1 2013/08/26 04:30:25 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.1.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Privacy Enhanced Mail (PEM) format reader and writer."
HOMEPAGE="http://github.com/vincenthz/hs-pem"
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-haskell/base64-bytestring:=[profile?]
dev-haskell/cereal:=[profile?]
dev-haskell/mtl:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
test? ( >=dev-haskell/quickcheck-2.4.0.1
>=dev-haskell/test-framework-0.3.3
dev-haskell/test-framework-quickcheck2
)
>=dev-haskell/cabal-1.8"

@ -0,0 +1 @@
DIST punycode-2.0.tar.gz 6243 SHA256 59072915dbd5f94d5cc2e6ac84061b329ab84a9f22fd18a591ad5fdba37b52a4 SHA512 106ee29667582f0341b993b8fd888046e70aff02bf9a31fb883488ed0f1fe346ae6dacd60ceacf088c056b50cb99d633322f066be391585af9c37fd8e5e4ff44 WHIRLPOOL bdbf2b6bccee1f04df121b1a34b50b315791e77aad52b2d8b7e0727d73eaf36a9cd6e7d36b01af0d50973a0dfe71b17f0056c5dba3f92c56cba36ec28913c328

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Encode unicode strings to ascii forms according to RFC 3492. It is written in pure Haskell, as opposed to gnuidn&#39;s Data.Text.IDN.Punycode. Please note that Data.Encoding.BootString from the &#39;encoding&#39; package also contains an implementation of the Punycode algorithm.
</longdescription>
</pkgmetadata>

@ -0,0 +1,32 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/punycode/punycode-2.0.ebuild,v 1.1 2013/08/26 05:01:46 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Encode unicode strings to ascii forms according to RFC 3492"
HOMEPAGE="https://github.com/litherum/punycode"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RESTRICT=test # runs slow, finds error
RDEPEND="dev-haskell/cereal:=[profile?]
dev-haskell/mtl:=[profile?]
dev-haskell/text:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8
test? ( dev-haskell/encoding
dev-haskell/hunit
dev-haskell/quickcheck
)"

@ -0,0 +1 @@
DIST ranges-0.2.4.tar.gz 2244 SHA256 dbbba083fccdd7f27454db3f29d0f9f13e927cb1e985641e5dbdcdbfddaebbfa SHA512 384982a7a3d9a2cf5e8cd525a4175671258869ed9bf676e607e02158daa5e658b5924559a9e223d121039efe9f097516d04703d39dba9cdf6bd53bf7b240f18e WHIRLPOOL c225922241b8ceaafd8456d8150a2eee768f1539454b3f92048ca97136441107243bf86bddd6243e4cac879aae304e5c3c167268f0ed72082c62e21f90125d2b

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Ranges and some functions allowing things like fast membership
lookup on ranges with holes in them and so on.
</longdescription>
</pkgmetadata>

@ -0,0 +1,23 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/ranges/ranges-0.2.4.ebuild,v 1.1 2013/08/26 04:59:25 qnikst Exp $
# ebuild generated by hackport 0.2.13
EAPI="3"
CABAL_FEATURES="lib profile haddock hscolour hoogle"
inherit haskell-cabal
DESCRIPTION="Ranges and various functions on them."
HOMEPAGE="http://hackage.haskell.org/package/ranges"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-lang/ghc-6.10.1"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.2"

@ -0,0 +1 @@
DIST regex-tdfa-1.1.8.tar.gz 65948 SHA256 7d9ca2ff95e602c46090dfa56f3176fe903d8d08ac9d725c79af56be0aece5d4 SHA512 b88d620cc29309fa43252a6cbe5dfae8bd5dd4503669e56869a38a3b5da9913548b768b64741a8bb7c3668c725540209d10c2d6c0ab33abc480639077b3e7b73 WHIRLPOOL 7829a07236ebdf7956742cdf55605be3ddfd14d9624b47393416b969717e02b5fbb6218e3d8c882a7d7403bd520c0815962725f828490cab73e108a5423a3435

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
A new all Haskell &quot;tagged&quot; DFA regex engine, inspired by libtre
</longdescription>
</pkgmetadata>

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/regex-tdfa/regex-tdfa-1.1.8.ebuild,v 1.1 2013/08/26 03:52:11 qnikst Exp $
# ebuild generated by hackport 0.2.13
EAPI="3"
CABAL_FEATURES="lib profile haddock hscolour hoogle"
inherit haskell-cabal
DESCRIPTION="Replaces/Enhances Text.Regex"
HOMEPAGE="http://hackage.haskell.org/package/regex-tdfa"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-haskell/mtl
dev-haskell/parsec
>=dev-haskell/regex-base-0.93.1
>=dev-lang/ghc-6.8.2"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.2.3"

@ -0,0 +1 @@
DIST skein-1.0.3.tar.gz 118432 SHA256 55cd57e5c102ca263bbf4acca1375d47cb1da6a366efa5967f4d72c87df37f97 SHA512 00ad7d7f61e41ff105713c1f30d1c1c4bcec0e487523157289f89486893c4a20e8a93dd53c3bc244c7d52c73dc9bf5db479643ab8b8e36543e2a0afa0dc2ca83 WHIRLPOOL a2ee076e4c3461a05706e98ba20951a64632b157eb7f4b030d6ed5eefec8349e93ea0996203f8bf70e8495d345b1c7b105c6aa0d343cd55e5cd722fa103f2dbd

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Skein (&lt;http://www.skein-hash.info/&gt;) is a family of fast
secure cryptographic hash functions designed by Niels
Ferguson, Stefan Lucks, Bruce Schneier, Doug Whiting, Mihir
Bellare, Tadayoshi Kohno, Jon Callas and Jesse Walker.
This package uses bindings to the optimized C implementation
of Skein. We provide a high-level interface (see module
&quot;Crypto.Skein&quot;) to some of the Skein use cases. We also
provide a low-level interface (see module
&quot;Crypto.Skein.Internal&quot;) should you need to use Skein in a
different way.
Currently we have support for Skein as cryptographic hash
function as Skein as a message authentication code
(Skein-MAC). For examples of how to use this package, see
&quot;Crypto.Skein&quot; module documentation.
</longdescription>
<use>
<flag name="force-endianness">Use a manually selected endian when compiling (see flag 'big-endian')</flag>
<flag name="big-endian">When manually selecting the endianness, use big-endian (default is little-endian).</flag>
</use>
</pkgmetadata>

@ -0,0 +1,36 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/skein/skein-1.0.3.ebuild,v 1.1 2013/08/26 04:12:13 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
inherit haskell-cabal
DESCRIPTION="Skein, a family of cryptographic hash functions. Includes Skein-MAC as well."
HOMEPAGE="https://github.com/meteficha/skein"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE="big-endian force-endianness"
RDEPEND="=dev-haskell/cereal-0.3*:=[profile?]
>=dev-haskell/crypto-api-0.6:=[profile?]
<dev-haskell/crypto-api-0.13:=[profile?]
>=dev-haskell/tagged-0.2:=[profile?]
<dev-haskell/tagged-0.7:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.8
test? ( >=dev-haskell/hspec-1.3
)"
src_configure() {
haskell-cabal_src_configure \
$(cabal_flag big-endian big-endian) \
$(cabal_flag force-endianness force-endianness)
}

@ -0,0 +1 @@
DIST stringprep-0.1.5.tar.gz 82062 SHA256 b7e259809bdec929a96be21be120fc3191aa771fef1c139f01fd8736515845a8 SHA512 7899905037927ae4c7d490f56fdf5a7a051daf39324adcb0f4d9a1ad35b06f05b914f3b706ff61c77f694b654e85db7866a7cfc5c8982ccfbbbe6224874a735e WHIRLPOOL 18910cc2ffe5f97f133b148131f7da855e53aa2f54ec941dee6665d488eb0ad653b19c06617d1c510a17552b0ad3ddb1b620a6567a1b1a9e3e5758d6ce1ff5dc

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Implements the &quot;StringPrep&quot; algorithm
</longdescription>
</pkgmetadata>

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/stringprep/stringprep-0.1.5.ebuild,v 1.1 2013/08/26 05:00:39 qnikst Exp $
EAPI=5
# ebuild generated by hackport 0.3.2.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Implements the "StringPrep" algorithm"
HOMEPAGE="http://hackage.haskell.org/package/stringprep"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-haskell/ranges-0.2.2:=[profile?]
>=dev-haskell/text-0.9:=[profile?]
>=dev-haskell/text-icu-0.6:=[profile?]
>=dev-lang/ghc-6.10.4:="
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -0,0 +1 @@
DIST text-icu-0.6.3.5.tar.gz 43078 SHA256 0abca7c4fa6d428f2bdf9af599830bcc3cb747dc13ca75bd1887fa7346e28eae SHA512 db7a406e1e9d3b2dba3d3b95737d14b2aa90a9976913c475c472280e2a4adb90c5aba2fbb2e1149b9d8fdcf148910ff83a216222da6f90a92e2ebf4c146e1a0d WHIRLPOOL ee023f4c61a06bb95b8d324d09f516ac180f3a38ac0a99aaaa10ea198de7cb289509eb452955b8887ac212667ea5b2278a76c74ba356ac8aa5e3fca3d2b24eb7

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<herd>haskell</herd>
<maintainer>
<email>haskell@gentoo.org</email>
</maintainer>
<longdescription>
Haskell bindings to the International Components for Unicode (ICU)
libraries. These libraries provide robust and full-featured Unicode
services on a wide variety of platforms.
Features include:
* Both pure and impure bindings, to allow for fine control over efficiency
and ease of use.
* Breaking of strings on character, word, sentence, and line boundaries.
* Access to the Unicode Character Database (UCD) of character metadata.
* String collation functions, for locales where the conventions for
lexicographic ordering differ from the simple numeric ordering of
character codes.
* Character set conversion functions, allowing conversion between
Unicode and over 220 character encodings.
* Unicode normalization. (When implementations keep strings in a
normalized form, they can be assured that equivalent strings have a
unique binary representation.)
* Regular expression search and replace.
</longdescription>
</pkgmetadata>

@ -0,0 +1,26 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/text-icu/text-icu-0.6.3.5.ebuild,v 1.1 2013/08/26 04:59:57 qnikst Exp $
EAPI=4
# ebuild generated by hackport 0.2.18.9999
CABAL_FEATURES="lib profile haddock hoogle hscolour"
inherit haskell-cabal
DESCRIPTION="Bindings to the ICU library"
HOMEPAGE="https://bitbucket.org/bos/text-icu"
SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-haskell/text-0.9.1.0[profile?]
<=dev-haskell/text-0.12.0.0[profile?]
>=dev-lang/ghc-6.8.2
>=dev-libs/icu-4"
DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"

@ -1,3 +1,4 @@
DIST MogileFS-Client-Async-0.015.tar.gz 69683 SHA256 4bd8e4d20c606a2361119413c990e3d859f842a9bf039bb0c446aae635be2741 SHA512 a050c432795bc5a200ba339b889577d1d635b1c813b675b72e8fe533a54ddc0798f0434158dc09b6520debc78e2f4e6df67308d6ed98c773118efdb2fb55d59a WHIRLPOOL ae945fa3d9aca6249eb19a720a26845e9ee283fa881c96bc98be610eacba732f862dbeeb45758c594d0a3a662a9858cc5e4ddc61d3b78978c05011cc8d2148a5
DIST MogileFS-Client-Async-0.018.tar.gz 23696 SHA256 5793f568d15c0882e49d2d83eefaa8586f4c6aa5640348a8ff206d344cfb3dda SHA512 debe00b9650c44bbeb0aaa6a0d86758c5a6d265e29b0e1b03c059f5581654c5cc4da05e3a19f173e1dff1770d1d538f3bed20d95f6201dd85d4accae1e60732e WHIRLPOOL 42b8c978b44700e5e290f69d86c4b054e2739b84b039935de063dee07ee8a449933bebf79cf28091ab9ac5d0fdf7755173dc59f1a5e5e04efeb747355d789f48
DIST MogileFS-Client-Async-0.022.tar.gz 24713 SHA256 1869e1fd4a25b5570bb1bae3c225a83abde6b4e4b183c07e1ccaa8fd4a04d3ff SHA512 051af767d67bd451639161c1a17ba56e17a0ee8c6c50f97085a33d84cb8c4085ee96609dfbe965e997bc1dfcfada78ae092be981f8e90d7408c92e841ddae223 WHIRLPOOL cb171b27c528f8ed08d89e5a489f380e2437ba259d355a659fb038ff3814843aa5b594a1b454b6f08eadb9c494b73bed875ebf22aa1487a67b36d2f1bc6a4505
DIST MogileFS-Client-Async-0.030.tar.gz 24988 SHA256 024eba25eab523a7d68c8a353c6c0be46aa3e2b52e849415ff90a42a52cb0c5f SHA512 32746207f12723171815cdc2e8b401b594b7de34b30a4bc1315575e20cd908ec7ff85b79c9bb501c6f343ed6469ffb80192ae1bdb08c7d76ed53e8d2ef40fcb2 WHIRLPOOL 258d40d0235875593ccaf9ed568450b39608cfebc02dbe81658bbc51289f59aa61b37ac0813cf0abc833731220bd073128bba57c4ad9468446d1863f76e6a21c

@ -0,0 +1,27 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/MogileFS-Client-Async/MogileFS-Client-Async-0.030.0.ebuild,v 1.1 2013/08/26 03:42:20 patrick Exp $
EAPI=4
MODULE_AUTHOR=DLAMBLEY
MODULE_VERSION=${PV%.0}
inherit perl-module
DESCRIPTION="MogileFS Client using AnyEvent non-blocking IO"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-perl/IO-AIO
dev-perl/AnyEvent
dev-perl/AnyEvent-HTTP
dev-perl/File-Slurp
>=dev-perl/MogileFS-Client-1.16
dev-perl/Try-Tiny
dev-perl/namespace-clean"
DEPEND="${RDEPEND}"
# Tests only available if you have a local mogilefsd on 127.0.0.1:7001
#SRC_TEST="do"

@ -1,2 +1,3 @@
DIST Test-Class-0.37.tar.gz 77317 SHA256 a7f76cfdd851c893333497c2d8e5a8be4f72473dc3c46c2033e7812eee3d6b0b SHA512 981e74b74a31bfec02a0f97983cbd1820faa2a346f660d98ee54facd08081f70aa9dc240c259303322395a6e830d1dde0df1f11f67f5b9ad84c26507605bf5b7 WHIRLPOOL 368d01f54395a47ba63c57776b21eedb558ef51477ef865a8f7671cfbb913c304448a1ad00d2b4b9e61dc648f7c3f865e28017377607eff4fa654f57620cf2f2
DIST Test-Class-0.38.tar.gz 78030 SHA256 05ab3c23095866b188805a491410949fc47fdebbe3d30bb9c8a5f8c284eb752f SHA512 dc2f0eda82eb3c04cbe2f84f7c7380f787e2ced12d6b14b6f5d6bc597f685a732c9fd8d4b2e7a679b53e9a1ebaa62d89eba0fc1f065baa281b9a17302dd5aa8e WHIRLPOOL 59036ed89206beaac67b4b8603428a6b8d0f57003f430141cb4a6e284aafa9149b1cd45dd6c13b73f70d8f2478a588de496e50202855ef161291800451258606
DIST Test-Class-0.39.tar.gz 78655 SHA256 d3a7d9b3ac24580524fc52865529457df4f43c0384f12264e884315d97f4bad5 SHA512 0fb2c2b30c17e1f3a8f787f0384eb4d1d08b4fe0a83fdb4a02aa5d030e5ecde36f8a8f9b8c641fb5bf69f015f03c86c610a2303135b98e5880db10a9908cc4fb WHIRLPOOL bb50a31ea06dd08237ecba77deb80d976b2bb32996de50ca42dbee08754c84b9c1eb1fef5a1019330fea31cf5ede043fdb3e963dd5d578f2fa84160a5727070d

@ -0,0 +1,24 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Class/Test-Class-0.390.0.ebuild,v 1.1 2013/08/26 03:49:10 patrick Exp $
EAPI=4
MODULE_AUTHOR=ADIE
MODULE_VERSION=0.39
inherit perl-module
DESCRIPTION="Easily create test classes in an xUnit style."
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="test"
RDEPEND=">=virtual/perl-Storable-2
>=virtual/perl-Test-Simple-0.78
dev-perl/MRO-Compat"
DEPEND="${RDEPEND}
>=virtual/perl-Module-Build-0.380.0
test? ( >=dev-perl/Test-Exception-0.25 )"
SRC_TEST="do"

@ -1,2 +1,3 @@
DIST Test-Exception-0.27.tar.gz 12940 SHA256 32ad1e5e12d562a9f65e68c096dc4978e567c7f7263a171af75f8bed8f0c22e9 SHA512 2c64faccdb6b6176aa734637587a0429d7158ec599367949285ff33e6320199e9393234caf003a7895e269983e963ef6909e400fbb58b20a90eb3409cb2f7422 WHIRLPOOL dad83d477cf8f598156d9ac5e75bef4bcbad2c7494efc06c37947824f351e04902e2bf53c517d7dd112226759609d1c9d605bd7f06c997e38f86689a2f07ddce
DIST Test-Exception-0.31.tar.gz 17634 SHA256 7a828b70109e5c30457b079e48974f4621d3af4e85ba6475476400f05835cdd3 SHA512 4a71ee443cf6aa6ddceb551b54d9cd5bcee29c711fd474654858899097a3f53d2c8b1aaf925ad2001ccd380b50251e5ff8efb36f71f2dcdb4b9878815ce4dc04 WHIRLPOOL aa4152a98bbdb427b35dac852b6de9f72e6b533b0a9760a8487b6870083d6ef0ef2c4a52b706a6998e27e8925531afed47190c445aa3a41671e9e5614c198fa2
DIST Test-Exception-0.32.tar.gz 18131 SHA256 ba4427e6004797ece8dce93c61d1d6c82df891b0f017e7d4a5c2505fa05c5a47 SHA512 fd394c2e3d24fc822810b77bd3bfe12ca75f59519ac0a0307f028be84a48386d12273967f0431f8c3a6671762c6426523420f620621ba7332c3268bc3a0706af WHIRLPOOL db6bdfbd4d1d45991ee9ecd78af37cc19911620a585a3284716faf3f80458194956ee8339a738fd3723b5b428bca4d70cff4467e30a3ce1b719c3a60239414d0

@ -0,0 +1,22 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-Exception/Test-Exception-0.320.0.ebuild,v 1.1 2013/08/26 03:47:45 patrick Exp $
EAPI=4
MODULE_AUTHOR=ADIE
MODULE_VERSION=0.32
inherit perl-module
DESCRIPTION="test functions for exception based code"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE=""
RDEPEND=">=virtual/perl-Test-Simple-0.64
>=dev-perl/Sub-Uplevel-0.18"
DEPEND="${RDEPEND}
>=virtual/perl-Module-Build-0.36"
SRC_TEST="do"

@ -1,3 +1,4 @@
DIST Try-Tiny-0.11.tar.gz 9923 SHA256 059e154ed82760bf6c1b6fddded800228bd97612d18159c68bfc36a8ea2bc885 SHA512 42a98d0996e4195b1618e99080f67791ec9b09c8c4de669aafcbe75c609718d700a6831dd5a68d8f7bda563c29ce3a8495bbf548b8d38a155471875889d8c701 WHIRLPOOL e9807e6cf5da1aad939c56809bd066d4215fb2a9b35c2b60c35c63493fb2bebe56277bc44e34d2d54d5b2ac9096782f9a9d801b44573905296268e2337ad1716
DIST Try-Tiny-0.12.tar.gz 10320 SHA256 4f5c13c28909d9717bd79acc6b37d2a8f2d746f99abbacd7e03d2c3906179b2b SHA512 4c627f1fc160c625281c83ee5cf1001a7b7884724e2f9495613ad5387eb8b4f047e4b469be1e39ba84df1e86b4494330aafb637643e5c655205521aacf8b218d WHIRLPOOL df5e6c874389823045082837637ede255938572e3a485e63b70bf0f71a2310b0157a2abf27213ef2fc9052ba201de3cbab517983c50dfe7dffef3dd476927bb8
DIST Try-Tiny-0.16.tar.gz 15987 SHA256 a8711329e622b5a95b06322f44b2ae11fd3eade8a4dced90bf70f4292d12d6f1 SHA512 fac950395658afbe9875b0351c3ff88f67043002495da09e0852651484fd13059c24c1910f9ada26ec89a6a7ba016236043faf4a5d9e042179885dc739f86b34 WHIRLPOOL 793150cd63d53a79cb567ecce02d77c32b8478ff3d02b8ce9bd6a1439fdf3afb9a3d3b0d1c2dedcf3acafeceea069d239d431ad0982278462507cd03183215d2
DIST Try-Tiny-0.18.tar.gz 16499 SHA256 4ec6fa76eda43ceb10598ea9950c815b332bb4e927b11a62d247c447faca4a1a SHA512 2e21298a22670c58a702a5a168a43dc48a213ef407bd7be3b3676522ea17735ea22dc835aa89c4e57e53af030e3310c881e9432c527435d827351f2230af0de5 WHIRLPOOL 5822a52848a4716cbbe882d95e11e9ff486a4fd6c29d1601c00bfcce0e3517bba54e281308acf539c47df6708a7abb869a5c3bad2432c8ee10877e3414a9ea83

@ -0,0 +1,20 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/Try-Tiny/Try-Tiny-0.180.0.ebuild,v 1.1 2013/08/26 03:32:33 patrick Exp $
EAPI=5
MODULE_AUTHOR=DOY
MODULE_VERSION=0.18
inherit perl-module
DESCRIPTION="Minimal try/catch with proper localization of $@"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
IUSE="test"
DEPEND="test? ( dev-perl/Sub-Name )"
SRC_TEST=do

@ -1 +1,2 @@
DIST XML-SAX-Expat-0.40.tar.gz 6510 SHA256 4b477dd7afba6e8d3f6117a28a2012381f8635e5cfb996d3cd4d0ee624c39930 SHA512 71f5419ae677e36f3c4471052944af8dc73fa599538afe077502c1c00a6c39e8c1a387da4d69d36ccaa90235e5ba5adee57c1aea18d0b0c789aa81f82347a0be WHIRLPOOL 3e5a463415da14bf195edeecbc0cda924140b13d449be42613cb345302bdb84359b1c85f5efe23604367991e01064a1aa3d8d7a57f45007b732484739024cc4a
DIST XML-SAX-Expat-0.50.tar.gz 7090 SHA256 a506e64cf3b6f3828e95085148226be1f3487b46e317c4d362dfdb755e954a12 SHA512 be015e608a923c8d8632c8dd44b6f7780fa3daa7075b1cdb961e45af5da3516826cdbfa198aa6ec52a31c27860830227e6bb6b22344780cbb630aa7ca6f0663f WHIRLPOOL e50438ea881cf435be5f1d73b1f78b07f5c3a45a070e5a2436c780dba864f06bd399130e1b8d731fb4352366018014ffc6d2407df4efc6ffeaffd28ead51442a

@ -0,0 +1,55 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-perl/XML-SAX-Expat/XML-SAX-Expat-0.500.0.ebuild,v 1.1 2013/08/26 03:50:43 patrick Exp $
EAPI=4
MODULE_AUTHOR=BJOERN
MODULE_VERSION=0.50
inherit perl-module
DESCRIPTION="SAX2 Driver for Expat"
LICENSE="|| ( Artistic GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RDEPEND=">=dev-perl/XML-SAX-0.15-r1
>=dev-perl/XML-NamespaceSupport-1.09
dev-perl/XML-Parser
dev-lang/perl"
DEPEND="${RDEPEND}
test? ( dev-perl/Test-Pod
dev-perl/Test-Pod-Coverage )"
SRC_TEST=do
src_compile() {
export SKIP_SAX_INSTALL=1
perl-module_src_compile
}
pkg_postinst() {
perl-module_pkg_postinst
pkg_update_parser add XML::SAX::Expat
}
pkg_postrm() {
perl-module_pkg_postrm
pkg_update_parser remove XML::SAX::Expat
}
pkg_update_parser() {
# pkg_update_parser [add|remove] $parser_module
local action=$1
local parser_module=$2
if [[ "$ROOT" = "/" ]] ; then
einfo "Update Parser: $1 $2"
perl -MXML::SAX -e "XML::SAX->${action}_parser(q(${parser_module}))->save_parsers()" \
|| ewarn "Update Parser: $1 $2 failed"
else
elog "To $1 $2 run:"
elog "perl -MXML::SAX -e 'XML::SAX->${action}_parser(q(${parser_module}))->save_parsers()'"
fi
}

@ -2,3 +2,4 @@ DIST basemap-1.0.3.tar.gz 120428063 SHA256 7a54897054973bc544a1704c7b629f1c183a9
DIST basemap-1.0.4.tar.gz 120436532 SHA256 db88649547d050be9e733382992997a42be2d91fde267296a488756ffe542187 SHA512 fff9fe95ab7b28862011696580dbc3d2e5946938b8fab73d43ede5dacde99f4bf0e39cd0b84686f8ce17ad75cf0f10bd6206cd032d726813d61c50548f475b99 WHIRLPOOL ba287a4e8eb4eb37a237928edd48a880fb20d10b7bfbb17d859d8d30b25e4cbe34c8ed0ca83ed6a89b00122974f4634da35fa4116fb88909900cdca86aae43f5
DIST basemap-1.0.5.tar.gz 120430743 SHA256 a270203fa36e9fe69cd3bf3c53412f1f2d6a49748cc43a54c12d8d589777b7c1 SHA512 8072d89d9e3c3d758e216e5e97f388d02ab2da2a3e527631ce280d2d30201f2272832a2e12ab98a362f054cc54ad5a357c0d66b2e12d6076fb574cd11015b86f WHIRLPOOL 83b2cd2fe4e9b76a1b50f65add3be0000ebb546de42516c9e1b169e36b4154fb16ae71d169f1e93138c0db0afa6aa8f7ad95a77b77be6bc2f12e55c4ad5de64f
DIST basemap-1.0.6.tar.gz 129422995 SHA256 203cac08434b9bbe63b0d2821e599fda534a8ba1f8f291728718efbb414145c9 SHA512 37c08d9d8e11783aedd684d4a5253d2f2827aeec8e54fc73310df05ca9ede167a4d4cb6578a42f824eb5a880abd70b10cedabe238eda9c44fa39fcfdb9cb08eb WHIRLPOOL b030f021a5a85f883f53702f8637cac6855d2863b3900605a840c9ea619eadff98c13c5f1c7190c4282e5d93cd586a10f02767b56c5966d1dbf5b1e1f7e52e10
DIST basemap-1.0.7.tar.gz 129694711 SHA256 e07ec2e0d63b24c9aed25a09fe8aff2598f82a85da8db74190bac81cbf104531 SHA512 dc8ef8f02127813c9460c6a9c22c593616bbe8ff39f6507abb786d344c710b296bf4f21759b5c1e6fc8ccf3f478d8fb6f546429528575d13f732c4233aaf9c20 WHIRLPOOL 7da55c32cdcea897e71367ec7d2b916a66973a7a761b001c0be5a9a5d97347a51c51e57828fb46f8c70b3a6576c562377657d129dc6fb54333e76897aaf76f6e

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save