public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-vim/haskellmode/
@ 2018-01-14 20:38 Patrice Clement
  0 siblings, 0 replies; 2+ messages in thread
From: Patrice Clement @ 2018-01-14 20:38 UTC (permalink / raw
  To: gentoo-commits

commit:     ce41e6b061931d785d463567811352083dbba8d4
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 14 20:38:17 2018 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Jan 14 20:38:37 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce41e6b0

app-vim/haskellmode: new ebuild.

The Haskell mode plugins provide advanced support for Haskell
development using GHC/GHCi.

Closes: https://bugs.gentoo.org/513730
Package-Manager: Portage-2.3.13, Repoman-2.3.3

 app-vim/haskellmode/Manifest                       |  1 +
 app-vim/haskellmode/haskellmode-20101118-r1.ebuild | 50 ++++++++++++++++++++++
 app-vim/haskellmode/metadata.xml                   |  8 ++++
 3 files changed, 59 insertions(+)

diff --git a/app-vim/haskellmode/Manifest b/app-vim/haskellmode/Manifest
new file mode 100644
index 00000000000..2115ed15edf
--- /dev/null
+++ b/app-vim/haskellmode/Manifest
@@ -0,0 +1 @@
+DIST haskellmode-20101118.tar.bz2 21637 BLAKE2B f64278a4d6d892068d1de85b0d19892908a5b841485cde2af419777637db353364882af76a84e406bd01c5f9d8967ef43b44edb5e40ec6b2762aa6d97975045b SHA512 c1882766c08afeda9aea9ddd072e6107f5615ee5a0916d029170ad38097a2fa7dce72bc2429618ac3889afb8d1de9ab53ddaf5beff45f873f9eb5a57b04bc6aa

diff --git a/app-vim/haskellmode/haskellmode-20101118-r1.ebuild b/app-vim/haskellmode/haskellmode-20101118-r1.ebuild
new file mode 100644
index 00000000000..00f065cc2c8
--- /dev/null
+++ b/app-vim/haskellmode/haskellmode-20101118-r1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+VIM_PLUGIN_VIM_VERSION="7.1"
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: Provides IDE-like features for Haskell development"
+HOMEPAGE="http://projects.haskell.org/haskellmode-vim"
+SRC_URI="http://code.haskell.org/~wwolff/haskellmode/${P}.tar.bz2"
+
+LICENSE="BSD"
+SLOT=0
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+	${RDEPEND}"
+
+RDEPEND="
+	dev-lang/ghc[doc]
+	net-misc/wget"
+
+VIM_PLUGIN_HELPFILES="haskellmode"
+VIM_PLUGIN_MESSAGES="filetype"
+
+pkg_postinst() {
+	vim-plugin_pkg_postinst
+
+	elog "You must set 'g:haddock_browser' to the path of your preferred browser, and"
+	elog "depending on your setup you may also want to change the default value of"
+	elog "'g:haddock_browser_callformat' (see ':help g:haddock_browser_callformat' for"
+	elog "full usage info). You can persist these settings in your vimrc file, for"
+	elog "example:"
+	elog
+	elog "    let g:haddock_browser=\"/usr/bin/elinks\""
+	elog "    let g:haddock_browser_callformat=\"%s file://%s >/dev/null 2>&1 &\""
+	elog
+	elog "To enable GHC compiler integration, also add the following to your vimrc:"
+	elog
+	elog "    au BufEnter *.hs compiler ghc"
+	elog
+	elog "The first time you load haskellmode, you must generate a Haddock index. Do"
+	elog "this with the command:"
+	elog
+	elog "    :ExportDocIndex"
+	elog
+	elog "Consult ${HOMEPAGE} for further setup and usage information."
+}

diff --git a/app-vim/haskellmode/metadata.xml b/app-vim/haskellmode/metadata.xml
new file mode 100644
index 00000000000..5c000c76308
--- /dev/null
+++ b/app-vim/haskellmode/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>vim@gentoo.org</email>
+		<name>Gentoo Vim Project</name>
+	</maintainer>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-vim/haskellmode/
@ 2024-06-23  6:48 Arthur Zamarin
  0 siblings, 0 replies; 2+ messages in thread
From: Arthur Zamarin @ 2024-06-23  6:48 UTC (permalink / raw
  To: gentoo-commits

commit:     e8a1c1238359d2cb1885bfc4faefb75b390452cc
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 23 06:47:48 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jun 23 06:47:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8a1c123

app-vim/haskellmode: EAPI 6 -> 8

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 ...lmode-20101118-r1.ebuild => haskellmode-20101118-r2.ebuild} | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/app-vim/haskellmode/haskellmode-20101118-r1.ebuild b/app-vim/haskellmode/haskellmode-20101118-r2.ebuild
similarity index 94%
rename from app-vim/haskellmode/haskellmode-20101118-r1.ebuild
rename to app-vim/haskellmode/haskellmode-20101118-r2.ebuild
index 00f065cc2c85..00a643950c3c 100644
--- a/app-vim/haskellmode/haskellmode-20101118-r1.ebuild
+++ b/app-vim/haskellmode/haskellmode-20101118-r2.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 VIM_PLUGIN_VIM_VERSION="7.1"
 
@@ -15,12 +15,10 @@ LICENSE="BSD"
 SLOT=0
 KEYWORDS="~amd64 ~x86"
 
-DEPEND="
-	${RDEPEND}"
-
 RDEPEND="
 	dev-lang/ghc[doc]
-	net-misc/wget"
+	net-misc/wget
+"
 
 VIM_PLUGIN_HELPFILES="haskellmode"
 VIM_PLUGIN_MESSAGES="filetype"


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

end of thread, other threads:[~2024-06-23  6:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-23  6:48 [gentoo-commits] repo/gentoo:master commit in: app-vim/haskellmode/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2018-01-14 20:38 Patrice Clement

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