diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2016-04-03 12:00:38 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2016-04-03 14:36:34 +0100 |
commit | 50ebd360da8ccf2a4be0ee69cf4233922b335b0a (patch) | |
tree | f1ebfb9c5b796766906f527ef304b88e9622adba /dev-haskell/happy | |
parent | dev-haskell/harp: drop old (diff) | |
download | gentoo-50ebd360da8ccf2a4be0ee69cf4233922b335b0a.tar.gz gentoo-50ebd360da8ccf2a4be0ee69cf4233922b335b0a.tar.bz2 gentoo-50ebd360da8ccf2a4be0ee69cf4233922b335b0a.zip |
dev-haskell/happy: drop old
Package-Manager: portage-2.2.28
Diffstat (limited to 'dev-haskell/happy')
-rw-r--r-- | dev-haskell/happy/Manifest | 2 | ||||
-rw-r--r-- | dev-haskell/happy/happy-1.18.10.ebuild | 63 | ||||
-rw-r--r-- | dev-haskell/happy/happy-1.19.3.ebuild | 67 |
3 files changed, 0 insertions, 132 deletions
diff --git a/dev-haskell/happy/Manifest b/dev-haskell/happy/Manifest index c3532967afac..d3dcf82e1f76 100644 --- a/dev-haskell/happy/Manifest +++ b/dev-haskell/happy/Manifest @@ -1,4 +1,2 @@ -DIST happy-1.18.10.tar.gz 159994 SHA256 c1c920f77906740252e261e2baec5b7519e584344d6080aa5a9cc0b677b9064b SHA512 e052b016bae9f255a9dfa7e4970a015cc5abfdd5216e6e4d4317c63890f154dd68da75aac1ac9bb5a8c84854e59066d0daed09c6ac4d4928ce93ecf4c8bcfb80 WHIRLPOOL ec97a2d7011af0dfd2e099b19bc6dda1df9a128b2a1c50bc82c010b7504c0a5682533b032b9f51386fd37935c17fee5aa38f7bd27e6dbb920664d964dcbbe637 -DIST happy-1.19.3.tar.gz 160853 SHA256 7d9c21ae2093c4f753f68eb6f654e48f08f72a79157bcac7182e6fcede8d70e0 SHA512 8d04a5756eb3b36a0aea3e7828adb69d657c6f9a18a2552295c60483fd50caf27a21cff3da4052e25adf25b0203907e782372ed0d2e2563467425144654a281b WHIRLPOOL cf97b16698b68f3fe4f9788689fbe799ab8d336c61b8b095ef79ad10cf4094e560c8d05add5b23825ee51acfa383253fdc6b7fd83bfbe88e2ef631f0d6e89754 DIST happy-1.19.4.tar.gz 160497 SHA256 6be499f66c61f8c48cbbbcb70515eb8e62c2bfa08adcc8c9474e7ae343a6936d SHA512 d49893098f9982321fc03dad464bf787873a1a82167165d53f617ba04923c7e5d8f177def7fa045a5669d1c7f886a88087ba8f668ef1900a71498b5800cc4b1a WHIRLPOOL 6f9b63a149e3681f3ea52a91c01386898c70df5c0d06d9d99f1979b21628ffce483d71bc48cd21c3ca0a7cec8edc4581dea02fc33b90ff9de9902453327fdeec DIST happy-1.19.5.tar.gz 159280 SHA256 62f03ac11d7b4b9913f212f5aa2eee1087f3b46dc07d799d41e1854ff02843da SHA512 7b43ef5236bdfba82bbddedb7edc7a8094990a389c0d3f5f848cb6208c3577e7b394cb290e51a2b2eebca25c97978a85ee932e74bbf6a792e261e5b5bff25a2b WHIRLPOOL 24bb36acb56dc20203032b9b81d542cc8e8f258bffd3b4e004cfa4185b209712c5b79c06da22f9bac4087452a0595021e94937fdd18fea79b082d0ac849c0541 diff --git a/dev-haskell/happy/happy-1.18.10.ebuild b/dev-haskell/happy/happy-1.18.10.ebuild deleted file mode 100644 index cdd99e16b3e7..000000000000 --- a/dev-haskell/happy/happy-1.18.10.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" - -CABAL_FEATURES="bin" -inherit base eutils haskell-cabal autotools - -DESCRIPTION="Happy is a parser generator for Haskell" -HOMEPAGE="http://www.haskell.org/happy/" -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.3 - >=dev-haskell/mtl-1.0 - >=dev-lang/ghc-6.8.2 <dev-lang/ghc-7.8 - doc? ( ~app-text/docbook-xml-dtd-4.2 - app-text/docbook-xsl-stylesheets )" - -PATCHES=("${FILESDIR}/${PN}-1.18.6-man.patch" - "${FILESDIR}/${PN}-1.18.9-missing-tests.patch") - -src_prepare() { - base_src_prepare - - use doc && cd doc && eautoconf -} - -src_configure() { - cabal_src_configure - - if use doc; then - cd doc && econf || die "econf failed in /doc" - fi -} - -src_compile() { - cabal_src_compile - - if use doc; then - cd doc && emake -j1 || die "emake failed in /doc" - fi -} - -src_test() { - emake -C "${S}/tests/" || die "emake for tests failed" -} - -src_install() { - cabal_src_install - if use doc; then - cd doc - dohtml -r happy/* - doman "${S}/doc/happy.1" - fi -} diff --git a/dev-haskell/happy/happy-1.19.3.ebuild b/dev-haskell/happy/happy-1.19.3.ebuild deleted file mode 100644 index b7bb3d385676..000000000000 --- a/dev-haskell/happy/happy-1.19.3.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -# ebuild generated by hackport 0.3.4.9999 - -CABAL_FEATURES="bin test-suite" -inherit eutils haskell-cabal autotools - -DESCRIPTION="Happy is a parser generator for Haskell" -HOMEPAGE="http://www.haskell.org/happy/" -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/mtl-1.0 - >=dev-lang/ghc-6.10.4 - doc? ( ~app-text/docbook-xml-dtd-4.2 - app-text/docbook-xsl-stylesheets ) -" - -src_prepare() { - for f in AttrGrammarParser Parser; do - # drop broken autogenerated - mv "dist/build/happy/happy-tmp/$f.hs" src/ || die - # drop depend on itself, otherwise cabal tries to regenerate it - rm "src/$f.ly" || die - done - use doc && cd doc && eautoconf -} - -src_configure() { - # '--with-happy=false' allows detecting circular - # depends even when 'happy' is installed in system - haskell-cabal_src_configure --with-happy=false - - if use doc; then - # does not like out-of-source builds - cd doc || die - econf - fi -} - -src_compile() { - haskell-cabal_src_compile - - if use doc; then - emake -C doc -j1 - fi -} - -src_install() { - haskell-cabal_src_install - if use doc; then - cd doc || die - dohtml -r happy/* - doman "${S}/doc/happy.1" - fi -} |