public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-haskell/hashtables: metadata.xml hashtables-1.1.2.0.ebuild ChangeLog
@ 2013-10-03  4:00 Mark Wright (gienah)
  0 siblings, 0 replies; only message in thread
From: Mark Wright (gienah) @ 2013-10-03  4:00 UTC (permalink / raw
  To: gentoo-commits

gienah      13/10/03 04:00:24

  Modified:             metadata.xml ChangeLog
  Added:                hashtables-1.1.2.0.ebuild
  Log:
  Bump hashtables to 1.1.2.0
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 618E971F)

Revision  Changes    Path
1.3                  dev-haskell/hashtables/metadata.xml

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/metadata.xml?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/metadata.xml?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/metadata.xml?r1=1.2&r2=1.3

Index: metadata.xml
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/metadata.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- metadata.xml	17 Mar 2013 16:09:55 -0000	1.2
+++ metadata.xml	3 Oct 2013 04:00:24 -0000	1.3
@@ -99,4 +99,7 @@
 		Please send bug reports to
 		<https://github.com/gregorycollins/hashtables/issues>.
 	</longdescription>
+	<use>
+		<flag name="sse4_1">Enable optimization for SSE4_1 capable processors (Intel Core 2 Penryn and later chips)</flag>
+	</use>
 </pkgmetadata>



1.13                 dev-haskell/hashtables/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	2 Apr 2013 07:27:51 -0000	1.12
+++ ChangeLog	3 Oct 2013 04:00:24 -0000	1.13
@@ -1,6 +1,12 @@
 # ChangeLog for dev-haskell/hashtables
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/ChangeLog,v 1.12 2013/04/02 07:27:51 gienah Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/ChangeLog,v 1.13 2013/10/03 04:00:24 gienah Exp $
+
+*hashtables-1.1.2.0 (03 Oct 2013)
+
+  03 Oct 2013; Mark Wright <gienah@gentoo.org> +hashtables-1.1.2.0.ebuild,
+  metadata.xml:
+  Bump hashtables to 1.1.2.0
 
 *hashtables-1.1.0.2 (02 Apr 2013)
 



1.1                  dev-haskell/hashtables/hashtables-1.1.2.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/hashtables-1.1.2.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-haskell/hashtables/hashtables-1.1.2.0.ebuild?rev=1.1&content-type=text/plain

Index: hashtables-1.1.2.0.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/hashtables/hashtables-1.1.2.0.ebuild,v 1.1 2013/10/03 04:00:24 gienah Exp $

EAPI=5

# ebuild generated by hackport 0.3.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="sse4_1"

RDEPEND="dev-haskell/primitive:=[profile?]
	>=dev-haskell/vector-0.7:=[profile?] <dev-haskell/vector-0.12:=[profile?]
	>=dev-lang/ghc-6.10.4:=
	|| ( ( >=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 \
		--flag=-portable \
		$(cabal_flag sse4_1 sse41)
		--flag=-debug \
		--flag=-bounds-checking \
		--flag=unsafe-tricks
}





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-10-03  4:00 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-03  4:00 [gentoo-commits] gentoo-x86 commit in dev-haskell/hashtables: metadata.xml hashtables-1.1.2.0.ebuild ChangeLog Mark Wright (gienah)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox