public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tim Harder" <radhermit@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/vile/
Date: Fri, 28 Aug 2015 06:40:41 +0000 (UTC)	[thread overview]
Message-ID: <1440743989.b7655e4950f5cb761f90203f785a61d90c016f10.radhermit@gentoo> (raw)

commit:     b7655e4950f5cb761f90203f785a61d90c016f10
Author:     Tim Harder <radhermit <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 28 06:34:01 2015 +0000
Commit:     Tim Harder <radhermit <AT> gentoo <DOT> org>
CommitDate: Fri Aug 28 06:39:49 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7655e49

app-editors/vile: version bump

 app-editors/vile/Manifest         |  1 +
 app-editors/vile/vile-9.8p.ebuild | 42 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/app-editors/vile/Manifest b/app-editors/vile/Manifest
index 4980def..57023e1 100644
--- a/app-editors/vile/Manifest
+++ b/app-editors/vile/Manifest
@@ -1,3 +1,4 @@
 DIST vile-9.8k.tgz 2278349 SHA256 af8386a43fdf82ba3c8e4187b8fe850543c5baac769cf26bb2b437e5b3689e24 SHA512 93dce951701f156ebe5aecd39a86556658334a2f262919974bd302238e4b78a63ea6a675fc47fd5b170055e7fba8134db27ff26076be0d1b0cf7a58d697b5836 WHIRLPOOL e75ded06e6eb5234a673a92d27ceb1632150c60e580a27e0c00267a147a3b02005afb62843e373a3112ed8a353f230d4101ad1adfa0a045cba47d21f1b301a20
 DIST vile-9.8n.tgz 2300678 SHA256 36cea866603483e43e705ba1a96d0d52dc81f9c0d97fbefe5150c50b04b258bb SHA512 c87350325f47ef9338d9e7dca1a22b0d2c23b632cc2338ab07b00a986fc911f2bfbb05c9dcb98f4b606c2f2d0294dec26bcbf45a711cb6ad25c3ecf4b84c9037 WHIRLPOOL 16be864f128b256049a6d0e7cd39a3256415eabec66bcc632db09c6e5d07ef72b775fe28c38c2cfa805e0a495d3bf83d25ac9c5c6d3decaa5c165c91ee5558b1
 DIST vile-9.8o.tgz 2304783 SHA256 45625c060cb9da3d68bba0d308fa61cb6a1cd7c7fd8b0e83aba8890632a19b24 SHA512 ddcc01b47990cc603f4af2c4738ed989d2be51018aa0bbc96079771f2809f11df160c6bc597dc50bf30f47ef5ec7c78646cbc19d7c381ef836de7bdb884bab87 WHIRLPOOL 746e2face1cbf0881cc2c10a57b5d412a30668805a62c8f5db64ffb20e9a74285ef1e5a05e6d607530705427360b13a1cb22dd62ae1dfe02ac190e1bfea518cd
+DIST vile-9.8p.tgz 2312139 SHA256 e16fe2adbcf142212ffe8bfcd57a3b161886b1f2f7e6c8a3f7607fbfa24b82b7 SHA512 75c317a3a65665c9b1a0d5c5911701b698fa451ca397f7ef5c5ede726f92246866ad874f9127b8e374193951be58b7f828daa26bee3356af72fa761ceaba0b5e WHIRLPOOL 059db40253c7f867330388b6bfff13969a40c7db02ba80a9b54e719ff651c6ea4dbfe78ca42487fbf55f1588b6c63190abbc7e733c027ad480b4201eb2a381f2

diff --git a/app-editors/vile/vile-9.8p.ebuild b/app-editors/vile/vile-9.8p.ebuild
new file mode 100644
index 0000000..852cee8
--- /dev/null
+++ b/app-editors/vile/vile-9.8p.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+DESCRIPTION="VI Like Emacs -- yet another full-featured vi clone"
+HOMEPAGE="http://invisible-island.net/vile/"
+SRC_URI="ftp://invisible-island.net/vile/current/${P}.tgz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="perl"
+
+RDEPEND=">=sys-libs/ncurses-5.2:0
+	perl? ( dev-lang/perl )"
+DEPEND="${RDEPEND}
+	sys-devel/flex
+	app-eselect/eselect-vi"
+
+src_configure() {
+	econf \
+		--with-ncurses \
+		$(use_with perl )
+}
+
+src_install() {
+	emake DESTDIR="${D}" INSTALL_OPT_S="" install
+	dodoc CHANGES* README doc/*.doc
+	dohtml doc/*.html
+}
+
+pkg_postinst() {
+	einfo "Updating ${EPREFIX}/usr/bin/vi symlink"
+	eselect vi update --if-unset
+}
+
+pkg_postrm() {
+	einfo "Updating ${EPREFIX}/usr/bin/vi symlink"
+	eselect vi update --if-unset
+}


             reply	other threads:[~2015-08-28  6:40 UTC|newest]

Thread overview: 57+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-28  6:40 Tim Harder [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-08-20 23:32 [gentoo-commits] repo/gentoo:master commit in: app-editors/vile/ Tim Harder
2017-01-29 14:38 Fabian Groffen
2017-03-07  7:36 Tim Harder
2017-03-07 10:08 Tobias Klausmann
2017-03-10  9:09 Agostino Sarubbo
2017-03-10 12:53 Agostino Sarubbo
2017-03-16 12:36 Michael Weber
2017-09-05 20:22 Tim Harder
2018-12-29  7:48 Tim Harder
2019-07-31 10:54 Agostino Sarubbo
2019-07-31 10:59 Agostino Sarubbo
2019-07-31 11:03 Agostino Sarubbo
2019-07-31 13:11 Agostino Sarubbo
2019-07-31 13:12 Agostino Sarubbo
2019-07-31 13:34 Agostino Sarubbo
2019-07-31 15:33 Tim Harder
2021-01-06 13:03 Fabian Groffen
2021-05-09 12:53 David Seifert
2021-05-17 22:36 Sam James
2021-07-10  1:11 Sam James
2021-10-29 13:31 Yixun Lan
2021-10-29 13:31 Yixun Lan
2022-06-02  2:36 Sam James
2022-06-02  2:36 Sam James
2022-08-10 20:29 Sam James
2022-08-24  0:48 Sam James
2022-09-20  8:47 Agostino Sarubbo
2022-09-20  8:49 Agostino Sarubbo
2022-09-20  8:50 Agostino Sarubbo
2022-09-21 12:25 Agostino Sarubbo
2022-12-06 20:32 Sam James
2022-12-07 19:41 Sam James
2022-12-27 11:40 Sam James
2022-12-28  0:46 Sam James
2022-12-28  0:56 Sam James
2022-12-28  0:56 Sam James
2023-01-13 18:51 Arthur Zamarin
2023-01-31 18:43 Sam James
2023-01-31 18:43 Sam James
2023-02-01  7:27 Sam James
2023-02-01  7:27 Sam James
2023-02-01  7:31 Sam James
2023-02-01  7:34 Arthur Zamarin
2023-12-09 19:30 Arthur Zamarin
2023-12-09 19:49 Arthur Zamarin
2023-12-09 20:25 Arthur Zamarin
2023-12-10 10:02 Arthur Zamarin
2024-01-26 12:56 Sam James
2024-01-26 13:01 Sam James
2024-03-04 10:36 Sam James
2024-03-10 12:04 Arthur Zamarin
2024-03-10 12:04 Arthur Zamarin
2024-03-10 12:04 Arthur Zamarin
2024-03-10 12:49 Arthur Zamarin
2024-11-02 23:00 Andreas K. Hüttel
2025-09-19 22:49 Sam James

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1440743989.b7655e4950f5cb761f90203f785a61d90c016f10.radhermit@gentoo \
    --to=radhermit@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox