Gentoo Archives: gentoo-commits

From: Lars Wendler <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/fish/
Date: Mon, 02 Jan 2017 10:32:44
Message-Id: 1483353155.89fc33c203b0b5ef5007c7612a7828721ad308b9.polynomial-c@gentoo
1 commit: 89fc33c203b0b5ef5007c7612a7828721ad308b9
2 Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 2 10:32:35 2017 +0000
4 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 2 10:32:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89fc33c2
7
8 app-shells/fish: Removed old.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-shells/fish/Manifest | 2 --
13 app-shells/fish/fish-2.2.0.ebuild | 69 ---------------------------------------
14 app-shells/fish/fish-2.3.1.ebuild | 65 ------------------------------------
15 3 files changed, 136 deletions(-)
16
17 diff --git a/app-shells/fish/Manifest b/app-shells/fish/Manifest
18 index 04599b1..bc12de2 100644
19 --- a/app-shells/fish/Manifest
20 +++ b/app-shells/fish/Manifest
21 @@ -1,3 +1 @@
22 -DIST fish-2.2.0.tar.gz 2213037 SHA256 a76339fd14ce2ec229283c53e805faac48c3e99d9e3ede9d82c0554acfc7b77a SHA512 210047f56b105a3d372f03d3a2de41661ed18001e3c8fa053ae4aa43089118d4467837ea022bc44f9877ecc3d0563b365f97920c002faccebaa663c4f079e9e0 WHIRLPOOL 8b25e437e0c942255b5f39686008fb37ec45cea52e04b2d61facf1fdcd59510138dace506eadb17eb0074d175d3c1226d6e52d437e325ed5a90e22e696918d9d
23 -DIST fish-2.3.1.tar.gz 4502836 SHA256 328acad35d131c94118c1e187ff3689300ba757c4469c8cc1eaa994789b98664 SHA512 dd0fa77f218cc84943c577ff8abafcde92fa953797757a62db317d87c2af82de6493810ce91012e20d46be9a52bffda9a40526328714ba1e4e389e5f2aa3fea5 WHIRLPOOL 823ad3b05aada036a96aff71693655d1683d1862a1f994163c0833af29230211e7b28bc77eb33d56baa2be87ec93532464ed818d7f167ef562df54301b23bb44
24 DIST fish-2.4.0.tar.gz 3455874 SHA256 06bbb2323360439c4044da762d114ec1aa1aba265cec71c0543e6a0095c9efc5 SHA512 b27a2291c284fda7a12b3cd5dcba8dfcbf2738f50de40d9aac1500afa3bd98be04b4f67d7e6d3bb2f808c11a8c2dd6b1b5cc2dfe3e8e0e7d1bc88f8d8994d57b WHIRLPOOL abb9c31237a33553b25920fe3284f4ca90941aed2b8f1ec4b69fdb4231f7b2585f0292bc647ffe3acf88f6b01ac61931f615fa9a56ede35a8182e3a69aa11861
25
26 diff --git a/app-shells/fish/fish-2.2.0.ebuild b/app-shells/fish/fish-2.2.0.ebuild
27 deleted file mode 100644
28 index 5f4ea44..00000000
29 --- a/app-shells/fish/fish-2.2.0.ebuild
30 +++ /dev/null
31 @@ -1,69 +0,0 @@
32 -# Copyright 1999-2015 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -# $Id$
35 -
36 -EAPI=5
37 -
38 -PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
39 -
40 -inherit base
41 -
42 -DESCRIPTION="fish is the Friendly Interactive SHell"
43 -HOMEPAGE="http://fishshell.com/"
44 -SRC_URI="http://fishshell.com/files/${PV}/${P}.tar.gz"
45 -
46 -LICENSE="GPL-2"
47 -SLOT="0"
48 -KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
49 -IUSE="X"
50 -
51 -DEPEND="sys-libs/ncurses
52 - sys-devel/bc
53 - sys-devel/gettext
54 - X? ( x11-misc/xsel )"
55 -
56 -# fish can add man-page completions from lzma and xz compressed man pages
57 -# through a python script. That's why we depend on python here (bug #490478)
58 -RDEPEND="${DEPEND}"
59 -
60 -src_configure() {
61 - # Set things up for fish to be a default shell.
62 - # It has to be in /bin in case /usr is unavailable.
63 - # Also, all of its utilities have to be in /bin.
64 - econf \
65 - docdir="${EPREFIX}"/usr/share/doc/${PF} \
66 - --bindir="${EPREFIX}"/bin
67 -}
68 -
69 -src_test() {
70 - if has_version ~${CATEGORY}/${P} ; then
71 - emake test
72 - else
73 - ewarn "The test suite only works when the package is already installed"
74 - fi
75 -}
76 -
77 -pkg_postinst() {
78 - elog "fish is now installed on your system."
79 - elog "To run fish, type 'fish' in your terminal."
80 - elog
81 - elog "To use fish as your login shell:"
82 - elog "* add the line '${EPREFIX}/bin/${PN}'"
83 - elog "* to the file '${EPREFIX}/etc/shells'."
84 - elog "* use the command 'chsh -s ${EPREFIX}/bin/${PN}'."
85 - elog
86 - elog "To set your colors, run 'fish_config'"
87 - elog "To scan your man pages for completions, run 'fish_update_completions'"
88 - elog "To autocomplete command suggestions press Ctrl + F or right arrow key."
89 - elog
90 - elog "Please add a \"BROWSER\" variable to ${PN}'s environment pointing to the"
91 - elog "browser of your choice to get acces to ${PN}'s help system:"
92 - elog " BROWSER=\"/usr/bin/firefox\""
93 - elog
94 - elog "In order to get lzma and xz support for man-page completion please"
95 - elog "emerge one of the following packages:"
96 - elog " dev-python/backports-lzma"
97 - elog " >=dev-lang/python-3.3"
98 - elog
99 - elog "Have fun!"
100 -}
101
102 diff --git a/app-shells/fish/fish-2.3.1.ebuild b/app-shells/fish/fish-2.3.1.ebuild
103 deleted file mode 100644
104 index 154c965..00000000
105 --- a/app-shells/fish/fish-2.3.1.ebuild
106 +++ /dev/null
107 @@ -1,65 +0,0 @@
108 -# Copyright 1999-2016 Gentoo Foundation
109 -# Distributed under the terms of the GNU General Public License v2
110 -# $Id$
111 -
112 -EAPI=6
113 -
114 -PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
115 -
116 -DESCRIPTION="fish is the Friendly Interactive SHell"
117 -HOMEPAGE="http://fishshell.com/"
118 -SRC_URI="http://fishshell.com/files/${PV}/${P}.tar.gz"
119 -
120 -LICENSE="GPL-2"
121 -SLOT="0"
122 -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
123 -IUSE="X"
124 -
125 -DEPEND="sys-libs/ncurses:0=
126 - sys-devel/bc
127 - sys-devel/gettext
128 - X? ( x11-misc/xsel )"
129 -
130 -RDEPEND="${DEPEND}"
131 -
132 -src_configure() {
133 - # Set things up for fish to be a default shell.
134 - # It has to be in /bin in case /usr is unavailable.
135 - # Also, all of its utilities have to be in /bin.
136 - econf \
137 - docdir="${EPREFIX}"/usr/share/doc/${PF} \
138 - --bindir="${EPREFIX}"/bin
139 -}
140 -
141 -src_test() {
142 - if has_version ~${CATEGORY}/${P} ; then
143 - emake test
144 - else
145 - ewarn "The test suite only works when the package is already installed"
146 - fi
147 -}
148 -
149 -pkg_postinst() {
150 - elog "fish is now installed on your system."
151 - elog "To run fish, type 'fish' in your terminal."
152 - elog
153 - elog "To use fish as your login shell:"
154 - elog "* add the line '${EPREFIX}/bin/${PN}'"
155 - elog "* to the file '${EPREFIX}/etc/shells'."
156 - elog "* use the command 'chsh -s ${EPREFIX}/bin/${PN}'."
157 - elog
158 - elog "To set your colors, run 'fish_config'"
159 - elog "To scan your man pages for completions, run 'fish_update_completions'"
160 - elog "To autocomplete command suggestions press Ctrl + F or right arrow key."
161 - elog
162 - elog "Please add a \"BROWSER\" variable to ${PN}'s environment pointing to the"
163 - elog "browser of your choice to get acces to ${PN}'s help system:"
164 - elog " BROWSER=\"/usr/bin/firefox\""
165 - elog
166 - elog "In order to get lzma and xz support for man-page completion please"
167 - elog "emerge one of the following packages:"
168 - elog " dev-python/backports-lzma"
169 - elog " >=dev-lang/python-3.3"
170 - elog
171 - elog "Have fun!"
172 -}