diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2015-07-26 14:04:26 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2015-07-26 14:04:26 +0000 |
commit | 41cf88efb9d5268ab2c56f15eeb233c9e23dcbef (patch) | |
tree | b92d4ce44a58008960d4cb82c925fa05c22a1991 /dev-haskell/cipher-aes | |
parent | Version bump. (diff) | |
download | gentoo-2-41cf88efb9d5268ab2c56f15eeb233c9e23dcbef.tar.gz gentoo-2-41cf88efb9d5268ab2c56f15eeb233c9e23dcbef.tar.bz2 gentoo-2-41cf88efb9d5268ab2c56f15eeb233c9e23dcbef.zip |
Version bump.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'dev-haskell/cipher-aes')
-rw-r--r-- | dev-haskell/cipher-aes/ChangeLog | 7 | ||||
-rw-r--r-- | dev-haskell/cipher-aes/cipher-aes-0.2.11.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-haskell/cipher-aes/ChangeLog b/dev-haskell/cipher-aes/ChangeLog index 0efc0548e458..bfb9bedf6408 100644 --- a/dev-haskell/cipher-aes/ChangeLog +++ b/dev-haskell/cipher-aes/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-haskell/cipher-aes # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cipher-aes/ChangeLog,v 1.15 2015/06/06 10:37:40 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/cipher-aes/ChangeLog,v 1.16 2015/07/26 14:04:26 slyfox Exp $ + +*cipher-aes-0.2.11 (26 Jul 2015) + + 26 Jul 2015; Sergei Trofimovich <slyfox@gentoo.org> +cipher-aes-0.2.11.ebuild: + Version bump. 06 Jun 2015; Justin Lecher <jlec@gentoo.org> metadata.xml: Add github to remote-id in metadata.xml diff --git a/dev-haskell/cipher-aes/cipher-aes-0.2.11.ebuild b/dev-haskell/cipher-aes/cipher-aes-0.2.11.ebuild new file mode 100644 index 000000000000..817cf7b614e6 --- /dev/null +++ b/dev-haskell/cipher-aes/cipher-aes-0.2.11.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2015 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.2.11.ebuild,v 1.1 2015/07/26 14:04:26 slyfox Exp $ + +EAPI=5 + +# ebuild generated by hackport 0.4.5.9999 +#hackport: flags: support_aesni:cpu_flags_x86_aes + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Fast AES cipher implementation with advanced mode of operations" +HOMEPAGE="https://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="cpu_flags_x86_aes cpu_flags_x86_ssse3" + +RDEPEND="dev-haskell/byteable:=[profile?] + >=dev-haskell/crypto-cipher-types-0.0.6:=[profile?] <dev-haskell/crypto-cipher-types-0.1:=[profile?] + >=dev-haskell/securemem-0.1.2:=[profile?] + >=dev-lang/ghc-7.4.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8 + test? ( >=dev-haskell/crypto-cipher-tests-0.0.8 + >=dev-haskell/quickcheck-2 + >=dev-haskell/test-framework-0.3.3 + >=dev-haskell/test-framework-quickcheck2-0.2.9 ) +" + +src_configure() { + local want_aes="-" + + use cpu_flags_x86_aes && \ + use cpu_flags_x86_ssse3 && \ + want_aes="" + + haskell-cabal_src_configure \ + --flag=${want_aes}support_aesni +} |