summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2013-11-14 18:12:08 +0000
committerSergei Trofimovich <slyfox@gentoo.org>2013-11-14 18:12:08 +0000
commit50e2430deb85984f2c37128f8aef2bf88b8001d5 (patch)
tree88504e090a638f3ff5aded77b10ccffe3c9ace9e /dev-haskell/alex
parentCleanup old, unsupported versions (diff)
downloadgentoo-2-50e2430deb85984f2c37128f8aef2bf88b8001d5.tar.gz
gentoo-2-50e2430deb85984f2c37128f8aef2bf88b8001d5.tar.bz2
gentoo-2-50e2430deb85984f2c37128f8aef2bf88b8001d5.zip
Version bump. Removed old.
(Portage version: 2.2.7_p18/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'dev-haskell/alex')
-rw-r--r--dev-haskell/alex/ChangeLog9
-rw-r--r--dev-haskell/alex/alex-2.3.5.ebuild73
-rw-r--r--dev-haskell/alex/alex-3.0.2.ebuild73
-rw-r--r--dev-haskell/alex/alex-3.1.2.ebuild73
-rw-r--r--dev-haskell/alex/files/alex-2.3.5-ghc-7.2.patch24
-rw-r--r--dev-haskell/alex/files/alex-2.3.5-missing-test.patch72
6 files changed, 81 insertions, 243 deletions
diff --git a/dev-haskell/alex/ChangeLog b/dev-haskell/alex/ChangeLog
index d2bf4c1b9575..32ccfb5c0a44 100644
--- a/dev-haskell/alex/ChangeLog
+++ b/dev-haskell/alex/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for dev-haskell/alex
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/ChangeLog,v 1.70 2013/08/02 07:12:20 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/ChangeLog,v 1.71 2013/11/14 18:12:08 slyfox Exp $
+
+*alex-3.1.2 (14 Nov 2013)
+
+ 14 Nov 2013; Sergei Trofimovich <slyfox@gentoo.org> +alex-3.1.2.ebuild,
+ -alex-2.3.5.ebuild, -alex-3.0.2.ebuild, -files/alex-2.3.5-ghc-7.2.patch,
+ -files/alex-2.3.5-missing-test.patch:
+ Version bump. Removed old.
02 Aug 2013; Sergei Trofimovich <slyfox@gentoo.org> alex-3.0.5.ebuild:
Fix alex build failure on nonempty HCFLAGS (by hasufell).
diff --git a/dev-haskell/alex/alex-2.3.5.ebuild b/dev-haskell/alex/alex-2.3.5.ebuild
deleted file mode 100644
index ccf8b4aa67f0..000000000000
--- a/dev-haskell/alex/alex-2.3.5.ebuild
+++ /dev/null
@@ -1,73 +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/alex/alex-2.3.5.ebuild,v 1.9 2012/09/12 14:51:30 qnikst Exp $
-
-# ebuild generated by hackport 0.2.9
-
-EAPI="3"
-
-CABAL_FEATURES="bin"
-inherit autotools eutils haskell-cabal
-
-DESCRIPTION="Alex is a tool for generating lexical analysers in Haskell"
-HOMEPAGE="http://www.haskell.org/alex/"
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.2
- >=dev-lang/ghc-6.8.2
- doc? ( ~app-text/docbook-xml-dtd-4.2
- app-text/docbook-xsl-stylesheets
- >=dev-libs/libxslt-1.1.2 )"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-2.3.5-missing-test.patch"
- epatch "${FILESDIR}/${PN}-2.3.5-ghc-7.2.patch"
-
- for f in Scan Parser; do
- rm "${S}/src/$f."*
- mv "${S}/dist/build/alex/alex-tmp/$f.hs" "${S}"/src/
- done
-
- if use doc; then
- cd "${S}/doc/"
- eautoreconf || die "eautoreconf for docs failed"
- fi
-}
-
-src_configure() {
- cabal_src_configure
-
- if use doc; then
- cd "${S}/doc/"
- econf || die "econf for docs failed"
- fi
-}
-
-src_compile() {
- cabal_src_compile
-
- if use doc; then
- emake -C "${S}/doc/" -j1 || die "emake for docs failed"
- fi
-}
-
-src_test() {
- emake -C "${S}/tests/" || die "emake for tests failed"
-}
-
-src_install() {
- cabal_src_install
-
- if use doc; then
- doman "${S}/doc/alex.1"
- dohtml -r "${S}/doc/alex/"
- fi
- dodoc README
-}
diff --git a/dev-haskell/alex/alex-3.0.2.ebuild b/dev-haskell/alex/alex-3.0.2.ebuild
deleted file mode 100644
index 8a2116a43d6f..000000000000
--- a/dev-haskell/alex/alex-3.0.2.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/alex-3.0.2.ebuild,v 1.8 2013/04/22 17:36:11 slyfox Exp $
-
-# ebuild generated by hackport 0.2.9
-
-EAPI="3"
-
-CABAL_FEATURES="bin"
-inherit autotools eutils haskell-cabal
-
-DESCRIPTION="Alex is a tool for generating lexical analysers in Haskell"
-HOMEPAGE="http://www.haskell.org/alex/"
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
- >=dev-haskell/cabal-1.6
- >=dev-haskell/quickcheck-2
- >=dev-lang/ghc-6.8.2
- doc? ( ~app-text/docbook-xml-dtd-4.2
- app-text/docbook-xsl-stylesheets
- >=dev-libs/libxslt-1.1.2 )"
-
-src_prepare() {
- HCFLAGS+=-XBangPatterns #fixes build failure on BE platforms; bug 466778
-
- for f in Scan Parser; do
- rm "${S}/src/$f."*
- mv "${S}/dist/build/alex/alex-tmp/$f.hs" "${S}"/src/
- done
-
- if use doc; then
- cd "${S}/doc/"
- eautoreconf || die "eautoreconf for docs failed"
- fi
-}
-
-src_configure() {
- cabal_src_configure
-
- if use doc; then
- cd "${S}/doc/"
- econf || die "econf for docs failed"
- fi
-}
-
-src_compile() {
- cabal_src_compile
-
- if use doc; then
- emake -C "${S}/doc/" -j1 || die "emake for docs failed"
- fi
-}
-
-src_test() {
- emake -C "${S}/tests/" || die "emake for tests failed"
-}
-
-src_install() {
- cabal_src_install
-
- if use doc; then
- doman "${S}/doc/alex.1"
- dohtml -r "${S}/doc/alex/"
- fi
- dodoc README
-}
diff --git a/dev-haskell/alex/alex-3.1.2.ebuild b/dev-haskell/alex/alex-3.1.2.ebuild
new file mode 100644
index 000000000000..a508fae634ac
--- /dev/null
+++ b/dev-haskell/alex/alex-3.1.2.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-haskell/alex/alex-3.1.2.ebuild,v 1.1 2013/11/14 18:12:08 slyfox Exp $
+
+EAPI=5
+
+# ebuild generated by hackport 0.3.4.9999
+
+CABAL_FEATURES="bin test-suite"
+inherit autotools haskell-cabal
+
+DESCRIPTION="Alex is a tool for generating lexical analysers in Haskell"
+HOMEPAGE="http://www.haskell.org/alex/"
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+ >=dev-haskell/cabal-1.8
+ >=dev-haskell/quickcheck-2
+ >=dev-lang/ghc-6.10.4
+ doc? ( ~app-text/docbook-xml-dtd-4.2
+ app-text/docbook-xsl-stylesheets
+ >=dev-libs/libxslt-1.1.2 )"
+
+src_prepare() {
+ # drop depend on itself and happy, otherwise cabal tries to regenerate it
+ rm src/{Scan.x,Parser.y} || die
+
+ for f in Scan Parser; do
+ mv "${S}/dist/build/alex/alex-tmp/$f.hs" "${S}"/src/ || die
+ done
+
+ if use doc; then
+ cd "${S}/doc/"
+ eautoreconf
+ fi
+}
+
+src_configure() {
+ # make sure we don't accidentally use those
+ # installed in system
+ haskell-cabal_src_configure \
+ --with-alex=false \
+ --with-happy=false
+
+ if use doc; then
+ cd "${S}/doc/"
+ econf
+ fi
+}
+
+src_compile() {
+ cabal_src_compile
+
+ if use doc; then
+ emake -C "${S}/doc/" -j1
+ fi
+}
+
+src_install() {
+ cabal_src_install
+
+ if use doc; then
+ doman "${S}/doc/alex.1"
+ dohtml -r "${S}/doc/alex/"
+ fi
+ dodoc README
+}
diff --git a/dev-haskell/alex/files/alex-2.3.5-ghc-7.2.patch b/dev-haskell/alex/files/alex-2.3.5-ghc-7.2.patch
deleted file mode 100644
index 31ab1ceee597..000000000000
--- a/dev-haskell/alex/files/alex-2.3.5-ghc-7.2.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/alex.cabal b/alex.cabal
-index d04467b..b262af7 100644
---- a/alex.cabal
-+++ b/alex.cabal
-@@ -72,7 +72,7 @@ executable alex
-
- build-depends: base < 5
-
-- extensions: CPP
-+ extensions: CPP, BangPatterns
- ghc-options: -Wall
- other-modules:
- AbsSyn
-diff --git a/doc/configure.ac b/doc/configure.ac
-index 51fa85d..6e772c0 100644
---- a/doc/configure.ac
-+++ b/doc/configure.ac
-@@ -9,5 +9,5 @@ FP_DIR_DOCBOOK_XSL([/usr/share/xml/docbook/stylesheet/nwalsh/current /usr/share/
-
- AC_PATH_PROG(DbLatexCmd,dblatex)
-
--AC_CONFIG_FILES([config.mk])
-+AC_CONFIG_FILES([config.mk alex.1])
- AC_OUTPUT
diff --git a/dev-haskell/alex/files/alex-2.3.5-missing-test.patch b/dev-haskell/alex/files/alex-2.3.5-missing-test.patch
deleted file mode 100644
index 3c80b88a2096..000000000000
--- a/dev-haskell/alex/files/alex-2.3.5-missing-test.patch
+++ /dev/null
@@ -1,72 +0,0 @@
-commit 883587ca4feecab72381991533b2f686a57a4d57
-Author: Sergei Trofimovich <slyfox@gentoo.org>
-Date: Mon Jul 25 08:20:13 2011 +0300
-
- added missing tokens_bytestring test
-
- Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
-
-diff --git a/alex.cabal b/alex.cabal
-index b262af7..c6f6e22 100644
---- a/alex.cabal
-+++ b/alex.cabal
-@@ -57,6 +57,7 @@ extra-source-files:
- tests/tokens.x
- tests/tokens_gscan.x
- tests/tokens_posn.x
-+ tests/tokens_bytestring.x
-
- flag small_base
- description: Choose the new smaller, split-up base package.
-diff --git a/tests/tokens_bytestring.x b/tests/tokens_bytestring.x
-new file mode 100644
-index 0000000..0cb23c8
---- /dev/null
-+++ b/tests/tokens_bytestring.x
-@@ -0,0 +1,46 @@
-+{
-+{-# LANGUAGE OverloadedStrings #-}
-+module Main (main) where
-+import System.Exit
-+import Data.ByteString.Lazy.Char8 (unpack)
-+}
-+
-+%wrapper "posn-bytestring"
-+
-+$digit = 0-9 -- digits
-+$alpha = [a-zA-Z] -- alphabetic characters
-+
-+tokens :-
-+
-+ $white+ ;
-+ "--".* ;
-+ let { tok (\p s -> Let p) }
-+ in { tok (\p s -> In p) }
-+ $digit+ { tok (\p s -> Int p (read (unpack s))) }
-+ [\=\+\-\*\/\(\)] { tok (\p s -> Sym p (head (unpack s))) }
-+ $alpha [$alpha $digit \_ \']* { tok (\p s -> Var p (unpack s)) }
-+
-+{
-+-- Each right-hand side has type :: AlexPosn -> String -> Token
-+
-+-- Some action helpers:
-+tok f p s = f p s
-+
-+-- The token type:
-+data Token =
-+ Let AlexPosn |
-+ In AlexPosn |
-+ Sym AlexPosn Char |
-+ Var AlexPosn String |
-+ Int AlexPosn Int |
-+ Err AlexPosn
-+ deriving (Eq,Show)
-+
-+main = if test1 /= result1 then exitFailure
-+ else exitWith ExitSuccess
-+
-+test1 = alexScanTokens " let in 012334\n=+*foo bar__'"
-+result1 = [Let (AlexPn 2 1 3),In (AlexPn 6 1 7),Int (AlexPn 9 1 10) 12334,Sym (AlexPn 16 2 1) '=',Sym (AlexPn 17 2 2) '+',Sym (AlexPn 18 2 3) '*',Var (AlexPn 19 2 4) "foo",Var (AlexPn 23 2 8) "bar__'"]
-+
-+
-+}