public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-haskell/haddock: haddock-2.4.2.ebuild ChangeLog
@ 2009-04-19 15:20 Lennart Kolmodin (kolmodin)
  0 siblings, 0 replies; 6+ messages in thread
From: Lennart Kolmodin (kolmodin) @ 2009-04-19 15:20 UTC (permalink / raw
  To: gentoo-commits

kolmodin    09/04/19 15:20:37

  Modified:             ChangeLog
  Added:                haddock-2.4.2.ebuild
  Log:
  Version bump dev-haskell/haddock-2.4.2, currently masked for testing.
  (Portage version: 2.1.6.7/cvs/Linux x86_64)

Revision  Changes    Path
1.57                 dev-haskell/haddock/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.57&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.57&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?r1=1.56&r2=1.57

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- ChangeLog	4 Oct 2008 10:12:48 -0000	1.56
+++ ChangeLog	19 Apr 2009 15:20:37 -0000	1.57
@@ -1,6 +1,12 @@
 # ChangeLog for dev-haskell/haddock
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.56 2008/10/04 10:12:48 armin76 Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.57 2009/04/19 15:20:37 kolmodin Exp $
+
+*haddock-2.4.2 (19 Apr 2009)
+
+  19 Apr 2009; Lennart Kolmodin <kolmodin@gentoo.org> +haddock-2.4.2.ebuild:
+  Version bump. Depends on dev-lang/ghc-6.10.2, so it's currently masked for
+  testing.
 
   04 Oct 2008; Raúl Porcel <armin76@gentoo.org> haddock-0.8.ebuild:
   alpha/ia64 stable



1.1                  dev-haskell/haddock/haddock-2.4.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.1&content-type=text/plain

Index: haddock-2.4.2.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.1 2009/04/19 15:20:37 kolmodin Exp $

CABAL_FEATURES="bin lib"
# don't enable profiling as the 'ghc' package is not built with profiling
inherit haskell-cabal autotools

DESCRIPTION="A documentation-generation tool for Haskell libraries"
HOMEPAGE="http://www.haskell.org/haddock/"
SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"

RDEPEND="~dev-lang/ghc-6.10.2
		dev-haskell/filepath
		dev-haskell/ghc-paths"
DEPEND="${RDEPEND}
		>=dev-haskell/cabal-1.6
		doc? (  ~app-text/docbook-xml-dtd-4.2
				app-text/docbook-xsl-stylesheets
				>=dev-libs/libxslt-1.1.2 )"

src_unpack() {
	unpack ${A}

	if use doc; then
	  cd "${S}/doc"
	  eautoreconf
	fi

}

src_compile () {
	cabal_src_compile
	if use doc; then
		cd "${S}/doc"
		./configure --prefix="${D}/usr/" \
			|| die 'error configuring documentation.'
		emake html || die 'error building documentation.'
	fi
}

src_install () {
	cabal_src_install
	if use doc; then
		dohtml -r "${S}/doc/haddock/"*
	fi
	dodoc CHANGES README
}







^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-haskell/haddock: haddock-2.4.2.ebuild ChangeLog
@ 2009-05-06 20:55 Lennart Kolmodin (kolmodin)
  0 siblings, 0 replies; 6+ messages in thread
From: Lennart Kolmodin (kolmodin) @ 2009-05-06 20:55 UTC (permalink / raw
  To: gentoo-commits

kolmodin    09/05/06 20:55:17

  Modified:             haddock-2.4.2.ebuild ChangeLog
  Log:
  Fixes for dev-haskell/haddock
  (Portage version: 2.1.6.12/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-haskell/haddock/haddock-2.4.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?r1=1.2&r2=1.3

Index: haddock-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- haddock-2.4.2.ebuild	20 Apr 2009 00:08:07 -0000	1.2
+++ haddock-2.4.2.ebuild	6 May 2009 20:55:17 -0000	1.3
@@ -1,23 +1,34 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.2 2009/04/20 00:08:07 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.3 2009/05/06 20:55:17 kolmodin Exp $
 
 CABAL_FEATURES="bin lib"
 # don't enable profiling as the 'ghc' package is not built with profiling
 inherit haskell-cabal autotools
 
+GHCPATHS_PN="ghc-paths"
+GHCPATHS_PV="0.1.0.5"
+GHCPATHS_P="${GHCPATHS_PN}-${GHCPATHS_PV}"
+
 DESCRIPTION="A documentation-generation tool for Haskell libraries"
 HOMEPAGE="http://www.haskell.org/haddock/"
-SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz"
+SRC_URI="http://hackage.haskell.org/packages/archive/${PN}/${PV}/${P}.tar.gz
+	http://hackage.haskell.org/packages/archive/${GHCPATHS_PN}/${GHCPATHS_PV}/${GHCPATHS_P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="doc"
 
-RDEPEND="~dev-lang/ghc-6.10.2
-		dev-haskell/filepath
-		dev-haskell/ghc-paths"
+# haddock-2.4.2 also deps on the upgradeable package dev-haskell/filepath.
+# however, it's included in >=ghc-6.10, so we use the core package without
+# stating the dependency in DEPEND.
+
+# we bundle the dep on ghc-paths to reduce the dependencies on this critical
+# package. ghc-paths would like to be compiled with USE=doc, which pulls in
+# haddock, which requires ghc-paths, which pulls in haddock...
+
+RDEPEND="~dev-lang/ghc-6.10.2"
 DEPEND="${RDEPEND}
 		>=dev-haskell/cabal-1.6
 		doc? (  ~app-text/docbook-xml-dtd-4.2
@@ -27,6 +38,17 @@
 src_unpack() {
 	unpack ${A}
 
+	# use ghc-paths directly, not as a library
+	sed -e "s|build-depends: ghc-paths|hs-source-dirs: ../${GHCPATHS_P}|" \
+		-e "s|Simple|Custom|" \
+		-i "${S}/${PN}.cabal"
+
+	# ghc-paths has a custom Setup.hs, haddock has the default Setup.lhs.
+	# we use a somewhat modified ghc-paths Setup.hs that works better for our
+	# purposes.
+	rm "${S}/Setup.lhs"
+	cp "${FILESDIR}/${P}-Setup.hs" "${S}/Setup.hs"
+
 	if use doc; then
 	  cd "${S}/doc"
 	  eautoreconf



1.59                 dev-haskell/haddock/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.59&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.59&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?r1=1.58&r2=1.59

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog	26 Apr 2009 16:05:27 -0000	1.58
+++ ChangeLog	6 May 2009 20:55:17 -0000	1.59
@@ -1,6 +1,13 @@
 # ChangeLog for dev-haskell/haddock
 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.58 2009/04/26 16:05:27 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.59 2009/05/06 20:55:17 kolmodin Exp $
+
+  06 May 2009; Lennart Kolmodin <kolmodin@gentoo.org>
+  +files/haddock-2.4.2-Setup.hs, haddock-2.4.2.ebuild:
+  Hide dependency on filepath and bundle dependency on ghc-paths.
+  This is to make it easier to install/upgrade haddock when you've just
+  upgraded/installed ghc-6.10.
+  Relevant bug #268248.
 
   26 Apr 2009; Lennart Kolmodin <kolmodin@gentoo.org> haddock-0.8.ebuild,
   haddock-0.9.ebuild:






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-haskell/haddock: haddock-2.4.2.ebuild ChangeLog
@ 2009-07-15 17:54 Lennart Kolmodin (kolmodin)
  0 siblings, 0 replies; 6+ messages in thread
From: Lennart Kolmodin (kolmodin) @ 2009-07-15 17:54 UTC (permalink / raw
  To: gentoo-commits

kolmodin    09/07/15 17:54:37

  Modified:             haddock-2.4.2.ebuild ChangeLog
  Log:
  Fix deps for dev-haskell/haddock, supports more ghc versions.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  dev-haskell/haddock/haddock-2.4.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?r1=1.3&r2=1.4

Index: haddock-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- haddock-2.4.2.ebuild	6 May 2009 20:55:17 -0000	1.3
+++ haddock-2.4.2.ebuild	15 Jul 2009 17:54:37 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.3 2009/05/06 20:55:17 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.4 2009/07/15 17:54:37 kolmodin Exp $
 
 CABAL_FEATURES="bin lib"
 # don't enable profiling as the 'ghc' package is not built with profiling
@@ -28,7 +28,8 @@
 # package. ghc-paths would like to be compiled with USE=doc, which pulls in
 # haddock, which requires ghc-paths, which pulls in haddock...
 
-RDEPEND="~dev-lang/ghc-6.10.2"
+# builds with ghc-6.10.2/3, but not .1
+RDEPEND="|| ( =dev-lang/ghc-6.10.2* =dev-lang/ghc-6.10.3* )"
 DEPEND="${RDEPEND}
 		>=dev-haskell/cabal-1.6
 		doc? (  ~app-text/docbook-xml-dtd-4.2



1.60                 dev-haskell/haddock/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.60&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.60&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?r1=1.59&r2=1.60

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- ChangeLog	6 May 2009 20:55:17 -0000	1.59
+++ ChangeLog	15 Jul 2009 17:54:37 -0000	1.60
@@ -1,6 +1,9 @@
 # ChangeLog for dev-haskell/haddock
 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.59 2009/05/06 20:55:17 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.60 2009/07/15 17:54:37 kolmodin Exp $
+
+  15 Jul 2009; Lennart Kolmodin <kolmodin@gentoo.org> haddock-2.4.2.ebuild:
+  Haddock 2.4.2 supports ghc-6.10.3 too, update DEPEND.
 
   06 May 2009; Lennart Kolmodin <kolmodin@gentoo.org>
   +files/haddock-2.4.2-Setup.hs, haddock-2.4.2.ebuild:






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-haskell/haddock: haddock-2.4.2.ebuild ChangeLog
@ 2009-07-23  6:21 Lennart Kolmodin (kolmodin)
  0 siblings, 0 replies; 6+ messages in thread
From: Lennart Kolmodin (kolmodin) @ 2009-07-23  6:21 UTC (permalink / raw
  To: gentoo-commits

kolmodin    09/07/23 06:21:39

  Modified:             haddock-2.4.2.ebuild ChangeLog
  Log:
  Update DEPEND for dev-haskell/haddock, relax deps.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  dev-haskell/haddock/haddock-2.4.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?r1=1.4&r2=1.5

Index: haddock-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- haddock-2.4.2.ebuild	15 Jul 2009 17:54:37 -0000	1.4
+++ haddock-2.4.2.ebuild	23 Jul 2009 06:21:39 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.4 2009/07/15 17:54:37 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.5 2009/07/23 06:21:39 kolmodin Exp $
 
 CABAL_FEATURES="bin lib"
 # don't enable profiling as the 'ghc' package is not built with profiling
@@ -28,8 +28,8 @@
 # package. ghc-paths would like to be compiled with USE=doc, which pulls in
 # haddock, which requires ghc-paths, which pulls in haddock...
 
-# builds with ghc-6.10.2/3, but not .1
-RDEPEND="|| ( =dev-lang/ghc-6.10.2* =dev-lang/ghc-6.10.3* )"
+# doesn't build with ghc-6.10.1, but that has never been in portage
+RDEPEND="=dev-lang/ghc-6.10*"
 DEPEND="${RDEPEND}
 		>=dev-haskell/cabal-1.6
 		doc? (  ~app-text/docbook-xml-dtd-4.2



1.61                 dev-haskell/haddock/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	15 Jul 2009 17:54:37 -0000	1.60
+++ ChangeLog	23 Jul 2009 06:21:39 -0000	1.61
@@ -1,6 +1,9 @@
 # ChangeLog for dev-haskell/haddock
 # Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.60 2009/07/15 17:54:37 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.61 2009/07/23 06:21:39 kolmodin Exp $
+
+  23 Jul 2009; Lennart Kolmodin <kolmodin@gentoo.org> haddock-2.4.2.ebuild:
+  Relax deps, haddock works with dev-lang/ghc-6.10.4 too.
 
   15 Jul 2009; Lennart Kolmodin <kolmodin@gentoo.org> haddock-2.4.2.ebuild:
   Haddock 2.4.2 supports ghc-6.10.3 too, update DEPEND.






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-haskell/haddock: haddock-2.4.2.ebuild ChangeLog
@ 2009-10-31 13:14 Lennart Kolmodin (kolmodin)
  0 siblings, 0 replies; 6+ messages in thread
From: Lennart Kolmodin (kolmodin) @ 2009-10-31 13:14 UTC (permalink / raw
  To: gentoo-commits

kolmodin    09/10/31 13:14:49

  Modified:             haddock-2.4.2.ebuild ChangeLog
  Log:
  Add keywords to dev-haskell/haddock
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  dev-haskell/haddock/haddock-2.4.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?r1=1.5&r2=1.6

Index: haddock-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- haddock-2.4.2.ebuild	23 Jul 2009 06:21:39 -0000	1.5
+++ haddock-2.4.2.ebuild	31 Oct 2009 13:14:49 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.5 2009/07/23 06:21:39 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.6 2009/10/31 13:14:49 kolmodin Exp $
 
 CABAL_FEATURES="bin lib"
 # don't enable profiling as the 'ghc' package is not built with profiling
@@ -17,7 +17,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~sparc ~ppc64 ~x86"
 IUSE="doc"
 
 # haddock-2.4.2 also deps on the upgradeable package dev-haskell/filepath.



1.66                 dev-haskell/haddock/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.66&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.66&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?r1=1.65&r2=1.66

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -r1.65 -r1.66
--- ChangeLog	30 Aug 2009 09:12:54 -0000	1.65
+++ ChangeLog	31 Oct 2009 13:14:49 -0000	1.66
@@ -1,6 +1,9 @@
 # ChangeLog for dev-haskell/haddock
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.65 2009/08/30 09:12:54 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.66 2009/10/31 13:14:49 kolmodin Exp $
+
+  31 Oct 2009; Lennart Kolmodin <kolmodin@gentoo.org> haddock-2.4.2.ebuild:
+  Add keywords tested in the overlay.
 
   30 Aug 2009; Lennart Kolmodin <kolmodin@gentoo.org> haddock-2.4.1.ebuild:
   Add ~ppc now that we have ghc 6.8.2 for that arch.






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-haskell/haddock: haddock-2.4.2.ebuild ChangeLog
@ 2010-03-30 21:46 Lennart Kolmodin (kolmodin)
  0 siblings, 0 replies; 6+ messages in thread
From: Lennart Kolmodin (kolmodin) @ 2010-03-30 21:46 UTC (permalink / raw
  To: gentoo-commits

kolmodin    10/03/30 21:46:56

  Modified:             haddock-2.4.2.ebuild ChangeLog
  Log:
  Make deps of dev-haskell/haddock stricter, it requires cabal-1.6*
  (Portage version: 2.1.7.17/cvs/Linux x86_64)

Revision  Changes    Path
1.7                  dev-haskell/haddock/haddock-2.4.2.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild?r1=1.6&r2=1.7

Index: haddock-2.4.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- haddock-2.4.2.ebuild	31 Oct 2009 13:14:49 -0000	1.6
+++ haddock-2.4.2.ebuild	30 Mar 2010 21:46:56 -0000	1.7
@@ -1,6 +1,6 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.6 2009/10/31 13:14:49 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/haddock-2.4.2.ebuild,v 1.7 2010/03/30 21:46:56 kolmodin Exp $
 
 CABAL_FEATURES="bin lib"
 # don't enable profiling as the 'ghc' package is not built with profiling
@@ -31,7 +31,7 @@
 # doesn't build with ghc-6.10.1, but that has never been in portage
 RDEPEND="=dev-lang/ghc-6.10*"
 DEPEND="${RDEPEND}
-		>=dev-haskell/cabal-1.6
+		=dev-haskell/cabal-1.6*
 		doc? (  ~app-text/docbook-xml-dtd-4.2
 				app-text/docbook-xsl-stylesheets
 				>=dev-libs/libxslt-1.1.2 )"



1.69                 dev-haskell/haddock/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.69&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?rev=1.69&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-haskell/haddock/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog	28 Mar 2010 14:03:51 -0000	1.68
+++ ChangeLog	30 Mar 2010 21:46:56 -0000	1.69
@@ -1,6 +1,9 @@
 # ChangeLog for dev-haskell/haddock
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.68 2010/03/28 14:03:51 kolmodin Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haddock/ChangeLog,v 1.69 2010/03/30 21:46:56 kolmodin Exp $
+
+  30 Mar 2010; Lennart Kolmodin <kolmodin@gentoo.org> haddock-2.4.2.ebuild:
+  Change deps of 2.4.2, it only builds with cabal-1.6*
 
   28 Mar 2010; Lennart Kolmodin <kolmodin@gentoo.org> haddock-2.6.0.ebuild:
   Add dependencies alex and happy, see bug #302397.






^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-03-30 21:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-19 15:20 [gentoo-commits] gentoo-x86 commit in dev-haskell/haddock: haddock-2.4.2.ebuild ChangeLog Lennart Kolmodin (kolmodin)
  -- strict thread matches above, loose matches on Subject: below --
2009-05-06 20:55 Lennart Kolmodin (kolmodin)
2009-07-15 17:54 Lennart Kolmodin (kolmodin)
2009-07-23  6:21 Lennart Kolmodin (kolmodin)
2009-10-31 13:14 Lennart Kolmodin (kolmodin)
2010-03-30 21:46 Lennart Kolmodin (kolmodin)

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