summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2013-06-19 06:42:41 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2013-06-19 06:42:41 +0000
commit199f03d9d3e1a34d40b9f67afb6f5b2e4c46ebe3 (patch)
treedacc97ff18f89b985cce1f6c06b4b324d51f2131 /dev-haskell
parentDrop old. (diff)
downloadgentoo-2-199f03d9d3e1a34d40b9f67afb6f5b2e4c46ebe3.tar.gz
gentoo-2-199f03d9d3e1a34d40b9f67afb6f5b2e4c46ebe3.tar.bz2
gentoo-2-199f03d9d3e1a34d40b9f67afb6f5b2e4c46ebe3.zip
Drop old.
(Portage version: 2.2.0_alpha177_p3/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'dev-haskell')
-rw-r--r--dev-haskell/haskell-src-exts/ChangeLog10
-rw-r--r--dev-haskell/haskell-src-exts/haskell-src-exts-0.2.ebuild44
-rw-r--r--dev-haskell/haskell-src-exts/haskell-src-exts-1.11.1.ebuild37
-rw-r--r--dev-haskell/haskell-src-exts/haskell-src-exts-1.13.0.ebuild37
-rw-r--r--dev-haskell/haskell-src-exts/haskell-src-exts-1.13.2.ebuild37
-rw-r--r--dev-haskell/haskell-src-exts/haskell-src-exts-1.13.3.ebuild35
-rw-r--r--dev-haskell/haskell-src-exts/haskell-src-exts-1.9.0.ebuild22
7 files changed, 8 insertions, 214 deletions
diff --git a/dev-haskell/haskell-src-exts/ChangeLog b/dev-haskell/haskell-src-exts/ChangeLog
index acbd0d19555d..db43e628a8ee 100644
--- a/dev-haskell/haskell-src-exts/ChangeLog
+++ b/dev-haskell/haskell-src-exts/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-haskell/haskell-src-exts
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haskell-src-exts/ChangeLog,v 1.21 2012/12/20 21:54:16 pacho Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haskell-src-exts/ChangeLog,v 1.22 2013/06/19 06:42:41 slyfox Exp $
+
+ 19 Jun 2013; Sergei Trofimovich <slyfox@gentoo.org>
+ -haskell-src-exts-0.2.ebuild, -haskell-src-exts-1.11.1.ebuild,
+ -haskell-src-exts-1.13.0.ebuild, -haskell-src-exts-1.13.2.ebuild,
+ -haskell-src-exts-1.13.3.ebuild, -haskell-src-exts-1.9.0.ebuild:
+ Drop old.
20 Dec 2012; Pacho Ramos <pacho@gentoo.org> metadata.xml:
Clean maintainer, bug #81411
diff --git a/dev-haskell/haskell-src-exts/haskell-src-exts-0.2.ebuild b/dev-haskell/haskell-src-exts/haskell-src-exts-0.2.ebuild
deleted file mode 100644
index 8290cfaa8e03..000000000000
--- a/dev-haskell/haskell-src-exts/haskell-src-exts-0.2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haskell-src-exts/haskell-src-exts-0.2.ebuild,v 1.12 2010/07/12 18:53:17 slyfox Exp $
-
-CABAL_FEATURES="lib happy"
-inherit base haskell-cabal eutils versionator
-
-DESCRIPTION="An extension to haskell-src that handles most common syntactic extensions to Haskell"
-HOMEPAGE="http://www.cs.chalmers.se/~d00nibro/haskell-src-exts/"
-SRC_URI="http://www.cs.chalmers.se/~d00nibro/haskell-src-exts/haskell-src-exts-${PV}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND=">=dev-lang/ghc-6.2
- dev-haskell/happy"
-
-S=${WORKDIR}/haskell-src-exts/src/haskell-src-exts
-
-CABAL_CONFIGURE_FLAGS="--constraint=base<4"
-
-src_unpack() {
- base_src_unpack
-
- # Make it work with ghc 6.6
- cd "${S}"
- epatch "${FILESDIR}/${P}-hiding-isSymbol.patch"
-
- # Make it work with ghc pre-6.4
- sed -i 's/{-# OPTIONS_GHC /{-# OPTIONS /' \
- "${S}/Language/Haskell/Hsx/Syntax.hs" \
- "${S}/Language/Haskell/Hsx/Pretty.hs"
- sed -i 's/#ifdef __GLASGOW_HASKELL__/#if __GLASGOW_HASKELL__>=604/' \
- "${S}/Language/Haskell/Hsx/Syntax.hs"
-
- if version_is_at_least "6.8" "$(ghc-version)"; then
- sed -i -e '/Build-Depends:/a \
- , array, pretty' \
- "${S}/${PN}.cabal"
- fi
-
-}
diff --git a/dev-haskell/haskell-src-exts/haskell-src-exts-1.11.1.ebuild b/dev-haskell/haskell-src-exts/haskell-src-exts-1.11.1.ebuild
deleted file mode 100644
index 1cc6170d50d7..000000000000
--- a/dev-haskell/haskell-src-exts/haskell-src-exts-1.11.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haskell-src-exts/haskell-src-exts-1.11.1.ebuild,v 1.2 2012/09/12 15:07:36 qnikst Exp $
-
-# ebuild generated by hackport 0.2.14
-
-EAPI="3"
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour"
-inherit haskell-cabal
-
-DESCRIPTION="Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"
-HOMEPAGE="http://code.haskell.org/haskell-src-exts"
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/cpphs-1.3
- >=dev-lang/ghc-6.8.2"
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.2
- dev-haskell/happy"
-
-src_prepare() {
- # test suite is broken, expects the package to be already installed.
- # this new Setup.hs will use the package inplice for tests
- cp "${FILESDIR}/haskell-src-exts-1.10.2-Setup.hs" "${S}/Setup.hs" \
- || die "Could not cp Setup.hs for tests"
-
- # remove broken tests. they will fail if you expect them to pass, and pass
- # if you expect them to fail...
- rm "${S}/Test/examples/Unicode"{.hs,Syntax.hs} \
- || die "Could not rm broken tests"
-}
diff --git a/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.0.ebuild b/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.0.ebuild
deleted file mode 100644
index 400d3e14a7ad..000000000000
--- a/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.0.ebuild,v 1.2 2012/09/12 15:07:36 qnikst Exp $
-
-# ebuild generated by hackport 0.2.14
-
-EAPI="3"
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour"
-inherit haskell-cabal
-
-DESCRIPTION="Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"
-HOMEPAGE="http://code.haskell.org/haskell-src-exts"
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/cpphs-1.3
- >=dev-lang/ghc-6.8.2"
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.6
- dev-haskell/happy"
-
-src_prepare() {
- # test suite is broken, expects the package to be already installed.
- # this new Setup.hs will use the package inplice for tests
- cp "${FILESDIR}/haskell-src-exts-1.10.2-Setup.hs" "${S}/Setup.hs" \
- || die "Could not cp Setup.hs for tests"
-
- # remove broken tests. they will fail if you expect them to pass, and pass
- # if you expect them to fail...
- rm "${S}/Test/examples/Unicode"{.hs,Syntax.hs} \
- || die "Could not rm broken tests"
-}
diff --git a/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.2.ebuild b/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.2.ebuild
deleted file mode 100644
index 5ee2c50eb289..000000000000
--- a/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.2.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.2.ebuild,v 1.2 2012/09/12 15:07:36 qnikst Exp $
-
-# ebuild generated by hackport 0.2.14
-
-EAPI="3"
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour"
-inherit haskell-cabal
-
-DESCRIPTION="Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"
-HOMEPAGE="http://code.haskell.org/haskell-src-exts"
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/cpphs-1.3
- >=dev-lang/ghc-6.8.2"
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.6
- dev-haskell/happy"
-
-src_prepare() {
- # test suite is broken, expects the package to be already installed.
- # this new Setup.hs will use the package inplice for tests
- cp "${FILESDIR}/haskell-src-exts-1.10.2-Setup.hs" "${S}/Setup.hs" \
- || die "Could not cp Setup.hs for tests"
-
- # remove broken tests. they will fail if you expect them to pass, and pass
- # if you expect them to fail...
- rm "${S}/Test/examples/Unicode"{.hs,Syntax.hs} \
- || die "Could not rm broken tests"
-}
diff --git a/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.3.ebuild b/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.3.ebuild
deleted file mode 100644
index af0391c2d6b8..000000000000
--- a/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.3.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haskell-src-exts/haskell-src-exts-1.13.3.ebuild,v 1.2 2012/09/12 15:07:36 qnikst Exp $
-
-EAPI=4
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour"
-inherit haskell-cabal
-
-DESCRIPTION="Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"
-HOMEPAGE="http://code.haskell.org/haskell-src-exts"
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-RDEPEND=">=dev-haskell/cpphs-1.3
- >=dev-lang/ghc-6.8.2"
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.6
- dev-haskell/happy"
-
-src_prepare() {
- # test suite is broken, expects the package to be already installed.
- # this new Setup.hs will use the package inplice for tests
- cp "${FILESDIR}/haskell-src-exts-1.10.2-Setup.hs" "${S}/Setup.hs" \
- || die "Could not cp Setup.hs for tests"
-
- # remove broken tests. they will fail if you expect them to pass, and pass
- # if you expect them to fail...
- rm "${S}/Test/examples/Unicode"{.hs,Syntax.hs} \
- || die "Could not rm broken tests"
-}
diff --git a/dev-haskell/haskell-src-exts/haskell-src-exts-1.9.0.ebuild b/dev-haskell/haskell-src-exts/haskell-src-exts-1.9.0.ebuild
deleted file mode 100644
index 6a5801bd5b56..000000000000
--- a/dev-haskell/haskell-src-exts/haskell-src-exts-1.9.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/haskell-src-exts/haskell-src-exts-1.9.0.ebuild,v 1.2 2012/09/12 15:07:36 qnikst Exp $
-
-CABAL_FEATURES="lib profile haddock"
-inherit haskell-cabal
-
-DESCRIPTION="Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"
-HOMEPAGE="http://code.haskell.org/haskell-src-exts"
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-RESTRICT="test"
-
-RDEPEND=">=dev-lang/ghc-6.6.1
- >=dev-haskell/cpphs-1.3"
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.2
- >=dev-haskell/happy-1.17"