Gentoo Archives: gentoo-commits

From: Amy Winston <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/joe/
Date: Sat, 28 May 2016 16:58:56
Message-Id: 1464454644.49951d4616d4717bfc3caab4371a85e28d72aeee.amynka@gentoo
1 commit: 49951d4616d4717bfc3caab4371a85e28d72aeee
2 Author: Amy Winston <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 28 16:57:24 2016 +0000
4 Commit: Amy Winston <amynka <AT> gentoo <DOT> org>
5 CommitDate: Sat May 28 16:57:24 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49951d46
7
8 app-editors/joe: remove old
9
10 Package-Manager: portage-2.2.26
11
12 app-editors/joe/Manifest | 2 --
13 app-editors/joe/joe-3.7-r2.ebuild | 56 ---------------------------------------
14 app-editors/joe/joe-4.1.ebuild | 45 -------------------------------
15 3 files changed, 103 deletions(-)
16
17 diff --git a/app-editors/joe/Manifest b/app-editors/joe/Manifest
18 index 83f86a1..394e3d9 100644
19 --- a/app-editors/joe/Manifest
20 +++ b/app-editors/joe/Manifest
21 @@ -1,3 +1 @@
22 -DIST joe-3.7.tar.gz 696036 SHA256 cae456e1ad5a8c1d3c94920a3416c2347277739b260e3494d3bc0f2b9b73106f SHA512 1b6ac65309156c422c73194b82c1f855006bb7a73dec957c3a25f68a51e91e6a2a84df9d5d538f08c8900fe0eb0e2b41ef0936437859d5dae5ffc45005e8a90f WHIRLPOOL 4ee918936eb1a902fd4c6e60061180dfef215a57fb0700a5e078cb9db9717eea30094388a472a14f031d80267a5e0ba290360ed89fe44d89269dfddb4e9a31d1
23 -DIST joe-4.1.tar.gz 1292957 SHA256 816211b2bd951f792de3602afd74ea4b51612fffdd9bc24a7808660053fef6db SHA512 f6fd9d87c94a4f47586d7a81cccbfd6bfdace2357e3c579f5abfb54117dd95cadcd1783e281874868da6f0a8853327fff5bb3876f86a031f45afb13db45f7377 WHIRLPOOL e5d536fbed434800a22fd38034d86928a08e4efacc0fa708bad7631a84d18d005c58a7de4347aa7ec21e5f2736a13e63399c3ef5c7949ab9602dd144718e5fcc
24 DIST joe-4.2.tar.gz 1341048 SHA256 bc5da64bc5683ab7b2962a33214b3537ea17ff6528a3c60ba170359e31e86974 SHA512 7c34f4467d89330ac195cfa76481d9ede4ee3764d0b1b24d091d1e6325bff451d2a9bc9f86a73404c9909587bcbe3e0c14511b739ec121edb7595ea1fcba028f WHIRLPOOL 9dd996e266d96894d8e8b17ab9cadd5eef02568b4778245c9af82f745b288fc1dbb7ee401da2a148a6f5afaf627b91638fad25adafb8c5671576fa38ff31aedc
25
26 diff --git a/app-editors/joe/joe-3.7-r2.ebuild b/app-editors/joe/joe-3.7-r2.ebuild
27 deleted file mode 100644
28 index 3d76cdc..0000000
29 --- a/app-editors/joe/joe-3.7-r2.ebuild
30 +++ /dev/null
31 @@ -1,56 +0,0 @@
32 -# Copyright 1999-2016 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -# $Id$
35 -
36 -EAPI="3"
37 -
38 -inherit flag-o-matic eutils
39 -
40 -DESCRIPTION="A free ASCII-Text Screen Editor for UNIX"
41 -HOMEPAGE="http://sourceforge.net/projects/joe-editor/"
42 -SRC_URI="mirror://sourceforge/joe-editor/${P}.tar.gz"
43 -
44 -LICENSE="GPL-1+"
45 -SLOT="0"
46 -KEYWORDS="alpha amd64 arm ~ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
47 -IUSE="xterm"
48 -
49 -DEPEND=">=sys-libs/ncurses-5.2-r2"
50 -RDEPEND="xterm? ( >=x11-terms/xterm-239 )"
51 -
52 -src_prepare() {
53 - # Fix segfault, bug 283508
54 - epatch "${FILESDIR}/${P}-segfault-fix.patch"
55 - epatch "${FILESDIR}/${P}-sanitise-includes.patch"
56 - epatch "${FILESDIR}/${P}-ftyperc.patch"
57 -
58 - cd "${S}"/rc
59 -
60 - # Enable xterm mouse support in the rc files
61 - if use xterm; then
62 - for i in *rc*.in; do
63 - sed -e 's/^ -\(mouse\|joexterm\)/-\1/' -i "${i}" || die "sed failed"
64 - done
65 - fi
66 -}
67 -
68 -src_configure() {
69 - # Bug 34609 (joe 2.9.8 editor seg-faults on 'find and replace' when compiled with -Os)
70 - replace-flags "-Os" "-O2"
71 -
72 - econf --docdir="${EPREFIX}"/usr/share/doc/${PF} || die
73 -}
74 -
75 -src_install() {
76 - make install DESTDIR="${D}" || die "make install failed"
77 - dodoc ChangeLog HACKING HINTS LIST NEWS README TODO
78 -}
79 -
80 -pkg_postinst() {
81 - if use xterm; then
82 - elog "To enable full xterm clipboard you need to set the allowWindowOps"
83 - elog "resources to true. This is usually found in /etc/X11/app-defaults/XTerm"
84 - elog "This is false by default due to potential security problems on some"
85 - elog "architectures (see bug #91453)."
86 - fi
87 -}
88
89 diff --git a/app-editors/joe/joe-4.1.ebuild b/app-editors/joe/joe-4.1.ebuild
90 deleted file mode 100644
91 index 1bfca36..0000000
92 --- a/app-editors/joe/joe-4.1.ebuild
93 +++ /dev/null
94 @@ -1,45 +0,0 @@
95 -# Copyright 1999-2016 Gentoo Foundation
96 -# Distributed under the terms of the GNU General Public License v2
97 -# $Id$
98 -
99 -EAPI=5
100 -
101 -inherit eutils
102 -
103 -DESCRIPTION="A free ASCII-Text Screen Editor for UNIX"
104 -HOMEPAGE="http://sourceforge.net/projects/joe-editor/"
105 -SRC_URI="mirror://sourceforge/joe-editor/${P}.tar.gz"
106 -
107 -LICENSE="GPL-1+ CC-BY-3.0"
108 -SLOT="0"
109 -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
110 -IUSE="xterm"
111 -
112 -DEPEND=">=sys-libs/ncurses-5.2-r2"
113 -RDEPEND="xterm? ( >=x11-terms/xterm-239 )"
114 -
115 -DOCS=( README.md NEWS.md docs/hacking.md docs/man.md )
116 -
117 -src_prepare() {
118 - # Enable xterm mouse support in the rc files
119 - if use xterm; then
120 - cd "${S}"/rc
121 - for i in *rc*.in; do
122 - sed -e 's/^ -\(mouse\|joexterm\)/-\1/' -i "${i}" || die "sed failed"
123 - done
124 - fi
125 -}
126 -
127 -src_configure() {
128 - econf \
129 - --docdir="/usr/share/doc/${PF}"
130 -}
131 -
132 -pkg_postinst() {
133 - if use xterm; then
134 - elog "To enable full xterm clipboard you need to set the allowWindowOps"
135 - elog "resources to true. This is usually found in /etc/X11/app-defaults/XTerm"
136 - elog "This is false by default due to potential security problems on some"
137 - elog "architectures (see bug #91453)."
138 - fi
139 -}