gienah 14/12/13 13:46:50 Modified: metadata.xml ChangeLog Added: hashtables-1.2.0.1.ebuild Log: Bump hashtables to 1.2.0.1 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 618E971F)
Revision Changes Path 1.5 dev-haskell/hashtables/metadata.xml file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/metadata.xml?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/metadata.xml?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/metadata.xml?r1=1.4&r2=1.5 Index: metadata.xml =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/metadata.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- metadata.xml 19 Oct 2013 13:00:59 -0000 1.4 +++ metadata.xml 13 Dec 2014 13:46:50 -0000 1.5 @@ -52,9 +52,9 @@ > > foo :: IO (HashTable Int Int) > foo = do - > ht <- H.new - > H.insert ht 1 1 - > return ht + > ht <- H.new + > H.insert ht 1 1 + > return ht Firstly, this makes it easy to switch to a different hash table implementation, and secondly, using a concrete type rather than leaving your functions abstract @@ -103,6 +103,7 @@ <flag name="bounds-checking">if on, use bounds-checking array accesses</flag> <flag name="portable">if on, use only pure Haskell code and no GHC extensions.</flag> <flag name="sse4_1">Enable optimization for SSE4_1 capable processors (Intel Core 2 Penryn and later chips)</flag> + <flag name="sse4_2">Enables SSE4.2 optimizations: Nehalem-based Intel Core i7 or later.</flag> <flag name="unsafe-tricks">turn on unsafe GHC tricks</flag> </use> </pkgmetadata> 1.20 dev-haskell/hashtables/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/ChangeLog?rev=1.20&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/ChangeLog?rev=1.20&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/ChangeLog?r1=1.19&r2=1.20 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/ChangeLog,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- ChangeLog 2 Feb 2014 11:13:30 -0000 1.19 +++ ChangeLog 13 Dec 2014 13:46:50 -0000 1.20 @@ -1,6 +1,12 @@ # ChangeLog for dev-haskell/hashtables # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/ChangeLog,v 1.19 2014/02/02 11:13:30 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/ChangeLog,v 1.20 2014/12/13 13:46:50 gienah Exp $ + +*hashtables-1.2.0.1 (13 Dec 2014) + + 13 Dec 2014; Mark Wright <[email protected]> +hashtables-1.2.0.1.ebuild, + metadata.xml: + Bump hashtables to 1.2.0.1 02 Feb 2014; Agostino Sarubbo <[email protected]> hashtables-1.1.2.1.ebuild: Stable for sparc, wrt bug #488808 1.1 dev-haskell/hashtables/hashtables-1.2.0.1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/hashtables-1.2.0.1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/hashtables-1.2.0.1.ebuild?rev=1.1&content-type=text/plain Index: hashtables-1.2.0.1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/hashtables-1.2.0.1.ebuild,v 1.1 2014/12/13 13:46:50 gienah Exp $ EAPI=5 # ebuild generated by hackport 0.4.4.9999 CABAL_FEATURES="lib profile haddock hoogle hscolour" inherit haskell-cabal DESCRIPTION="Mutable hash tables in the ST monad" HOMEPAGE="http://github.com/gregorycollins/hashtables" SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0/${PV}" KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="bounds-checking debug portable sse4_2 +unsafe-tricks" RDEPEND="dev-haskell/primitive:=[profile?] >=dev-haskell/vector-0.7:=[profile?] <dev-haskell/vector-0.12:=[profile?] >=dev-lang/ghc-7.4.1:= || ( ( >=dev-haskell/hashable-1.1:=[profile?] <dev-haskell/hashable-1.2:=[profile?] ) ( >=dev-haskell/hashable-1.2.1:=[profile?] <dev-haskell/hashable-1.3:=[profile?] ) ) " DEPEND="${RDEPEND} >=dev-haskell/cabal-1.8 " src_configure() { haskell-cabal_src_configure \ $(cabal_flag bounds-checking bounds-checking) \ $(cabal_flag debug debug) \ $(cabal_flag portable portable) \ $(cabal_flag sse4_2 sse42) \ $(cabal_flag unsafe-tricks unsafe-tricks) }
