Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/jupp/
Date: Sun, 25 Nov 2018 13:02:42
Message-Id: 1543150945.41b425295ec5d50e14fed6668f7f3d077f3d0d54.ulm@gentoo
1 commit: 41b425295ec5d50e14fed6668f7f3d077f3d0d54
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 25 13:00:42 2018 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 25 13:02:25 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41b42529
7
8 app-editors/jupp: Version bump.
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.12
11 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
12
13 app-editors/jupp/Manifest | 1 +
14 app-editors/jupp/jupp-3.1_p38.ebuild | 32 ++++++++++++++++++++++++++++++++
15 2 files changed, 33 insertions(+)
16
17 diff --git a/app-editors/jupp/Manifest b/app-editors/jupp/Manifest
18 index a0550eda72f..b64114a8013 100644
19 --- a/app-editors/jupp/Manifest
20 +++ b/app-editors/jupp/Manifest
21 @@ -1 +1,2 @@
22 DIST joe-3.1jupp30.tgz 468421 BLAKE2B 630ef1cd3f3c73060b331126ec8e6a24d7277b3f2bfb293eb6110d1dade34ffe6efc502d0985e603b2c86a10bf27faa6151e28b777189332b805e387b756dea6 SHA512 673d48da41f61797d6aeb548e62720d1a60e3e000445558be88fb0d7ca8a1a7ce7c8bdd5b5bd58ac2c16d46dd4541da7922999256669f693a570a11562d6550f
23 +DIST joe-3.1jupp38.tgz 498068 BLAKE2B 46909c5f0f14b1d0ec30219b8ddfe9c0ad76b726f7178f7527ad5fad0cec40b7ac663e93645187220280572fa3bbde9bcb621f8816672e69c36587410fd98c7f SHA512 1d21ee5bbd1a042c58a89dd2bed8ec711c59fc383ff0dfd94d3a0eaccb999734915abc202e2112c5d573d8073e748b8024cd710b21803fed7422f5a8bccbc0c5
24
25 diff --git a/app-editors/jupp/jupp-3.1_p38.ebuild b/app-editors/jupp/jupp-3.1_p38.ebuild
26 new file mode 100644
27 index 00000000000..d8bdab27bf5
28 --- /dev/null
29 +++ b/app-editors/jupp/jupp-3.1_p38.ebuild
30 @@ -0,0 +1,32 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="Portable version of Joe's Own Editor"
37 +HOMEPAGE="https://www.mirbsd.org/jupp.htm"
38 +SRC_URI="https://www.mirbsd.org/MirOS/dist/${PN}/joe-${PV/_p/${PN}}.tgz"
39 +
40 +LICENSE="GPL-1"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~x86"
43 +IUSE="ncurses"
44 +
45 +RDEPEND="ncurses? ( sys-libs/ncurses:0= )
46 + !app-editors/joe"
47 +DEPEND="${RDEPEND}"
48 +
49 +S="${WORKDIR}/${PN}"
50 +DOCS="HINTS INFO LIST NEWS README TODO"
51 +
52 +src_prepare() {
53 + default
54 + chmod +x configure || die
55 +}
56 +
57 +src_configure() {
58 + econf \
59 + --enable-search_libs \
60 + --enable-termcap \
61 + $(use_enable ncurses curses)
62 +}