From: Michael Mair-Keimberger (asterix) Date: Mon, 4 Jul 2016 19:31:29 +0000 (+0200) Subject: app-emacs/ghc-mod: remove ebuild from files directory! X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=14e70751812f1eb9a1af6836966850d082bc7bc4;p=gentoo.git app-emacs/ghc-mod: remove ebuild from files directory! Closes: https://github.com/gentoo/gentoo/pull/1826 Signed-off-by: Patrice Clement --- diff --git a/app-emacs/ghc-mod/files/ghc-mod-5.5.0.0-r1.ebuild b/app-emacs/ghc-mod/files/ghc-mod-5.5.0.0-r1.ebuild deleted file mode 100644 index d28874c45137..000000000000 --- a/app-emacs/ghc-mod/files/ghc-mod-5.5.0.0-r1.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -# ebuild generated by hackport 0.4.6 - -CABAL_FEATURES="bin lib profile haddock hoogle hscolour test-suite" -inherit elisp-common haskell-cabal - -DESCRIPTION="Happy Haskell Programming" -HOMEPAGE="http://www.mew.org/~kazu/proj/ghc-mod/" -SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" - -LICENSE="AGPL-3" -SLOT="0/${PV}" -KEYWORDS="~amd64 ~x86" -IUSE="emacs" - -RESTRICT=test # doctests break on modules collisions: temporary / temporary-rc - -RDEPEND=">=dev-haskell/binary-0.5.1.0:=[profile?] =dev-haskell/cabal-helper-0.6.3.0:=[profile?] =dev-haskell/djinn-ghc-0.0.2.2:=[profile?] =dev-haskell/extra-1.4:2=[profile?] =dev-haskell/fclabels-2.0:=[profile?] =dev-haskell/hlint-1.8.61:=[profile?] =dev-haskell/monad-control-1.0:=[profile?] =dev-haskell/monad-journal-0.4:=[profile?] =dev-haskell/mtl-2.0:=[profile?] =dev-haskell/optparse-applicative-0.11.0:=[profile?] =dev-haskell/pipes-4.1:=[profile?] =dev-haskell/safe-0.3.9:=[profile?] =dev-lang/ghc-7.4.1:= -" -DEPEND="${RDEPEND} - >=dev-haskell/cabal-1.14 - test? ( >=dev-haskell/doctest-0.9.3 - dev-haskell/executable-path - >=dev-haskell/hspec-2.0.0 ) -" -SITEFILE=50${PN}-gentoo.el - -src_prepare() { - epatch "${FILESDIR}"/${PN}-5.5.0.0-gentoo.patch -} - -src_compile() { - haskell-cabal_src_compile - if use emacs ; then - pushd elisp - elisp-compile *.el || die - popd - fi -} - -src_install() { - haskell-cabal_src_install - if use emacs ; then - pushd "${S}" - elisp-install ghc-mod elisp/*.{el,elc} - elisp-site-file-install "${FILESDIR}"/${SITEFILE} - popd - fi -} - -pkg_postinst() { - haskell-cabal_pkg_postinst - if use emacs ; then - elisp-site-regen - elog "To configure ghc-mod either add this line to ~/.emacs:" - elog "(autoload 'ghc-init \"ghc\" nil t)" - elog "and either this line:" - elog "(add-hook 'haskell-mode-hook (lambda () (ghc-init)))" - elog "or if you wish to use flymake:" - elog "(add-hook 'haskell-mode-hook (lambda () (ghc-init) (flymake-mode)))" - fi -} - -pkg_postrm() { - haskell-cabal_pkg_postrm - if use emacs ; then - elisp-site-regen - fi -}