Gentoo Archives: gentoo-commits

From: Andrey Utkin <andrey_utkin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/mcabber/
Date: Mon, 18 Feb 2019 19:29:50
Message-Id: 1550518167.6a3c9157af62930a53686b7ffb8f40cf071dce2e.andrey_utkin@gentoo
1 commit: 6a3c9157af62930a53686b7ffb8f40cf071dce2e
2 Author: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 18 19:27:19 2019 +0000
4 Commit: Andrey Utkin <andrey_utkin <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 18 19:29:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a3c9157
7
8 net-im/mcabber: drop old versions
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.12
11 Signed-off-by: Andrey Utkin <andrey_utkin <AT> gentoo.org>
12
13 net-im/mcabber/Manifest | 1 -
14 net-im/mcabber/mcabber-1.0.5.ebuild | 116 ------------------------------------
15 net-im/mcabber/mcabber-1.1.0.ebuild | 116 ------------------------------------
16 3 files changed, 233 deletions(-)
17
18 diff --git a/net-im/mcabber/Manifest b/net-im/mcabber/Manifest
19 index 9fc177c3029..ce87b9acbbb 100644
20 --- a/net-im/mcabber/Manifest
21 +++ b/net-im/mcabber/Manifest
22 @@ -1,2 +1 @@
23 -DIST mcabber-1.0.5.tar.bz2 605483 BLAKE2B 557ec5f4db6d2dab41fdb3110a165867d354f98f11c3d4ded34abe6b8fed5a895dd0e948bad94ca1694f61f398535f4d7701ddfd9d77a79c89cc9e0b54f587d0 SHA512 81b67899245902f495af7b44a5a0d710db69da731a00fb9ed84bdc0f88d5dc662f340817b1eaa843802c95105846234743eba52117f18bf12dd37a0da61d414d
24 DIST mcabber-1.1.0.tar.bz2 608975 BLAKE2B 856b1a4d7118337f40b11348274c79d125776d5dddcd50f87097e58240807a4ecafc4816c44d44a51bf9cbb920edb225b312c1d5d0d52be4be93810512ef2706 SHA512 d12546e9fe9da94b6107f4d38d4083bee74e2702f7f2225e26be291230c6fe1319f60a3204da669dc00b14d69822425bf8214ebb723c3c4a7a33b1247a03093f
25
26 diff --git a/net-im/mcabber/mcabber-1.0.5.ebuild b/net-im/mcabber/mcabber-1.0.5.ebuild
27 deleted file mode 100644
28 index b93fb2ad50f..00000000000
29 --- a/net-im/mcabber/mcabber-1.0.5.ebuild
30 +++ /dev/null
31 @@ -1,116 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit flag-o-matic autotools-utils
38 -
39 -DESCRIPTION="A small Jabber console client with various features, like MUC, SSL, PGP"
40 -HOMEPAGE="http://mcabber.com/"
41 -#REV="a18e1b488f1c"
42 -#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
43 -SRC_URI="http://mcabber.com/files/${P}.tar.bz2"
44 -
45 -#S=${WORKDIR}/${PN}-${REV}/${PN}
46 -
47 -LICENSE="GPL-2"
48 -SLOT="0"
49 -KEYWORDS="~alpha amd64 ~arm ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
50 -
51 -IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
52 -
53 -LANGS="cs de fr it nl pl ru uk"
54 -# localized help versions are installed only, when L10N var is set
55 -for i in ${LANGS}; do
56 - IUSE="${IUSE} l10n_${i}"
57 -done;
58 -
59 -RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
60 - otr? ( >=net-libs/libotr-3.1.0 )
61 - aspell? ( app-text/aspell )
62 - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
63 - idn? ( net-dns/libidn )
64 - spell? ( app-text/enchant )
65 - dev-libs/glib:2
66 - net-libs/libnsl:0=
67 - sys-libs/ncurses:0=
68 - >=net-libs/loudmouth-1.4.3-r1[ssl?]"
69 -DEPEND="${RDEPEND}
70 - virtual/pkgconfig"
71 -
72 -## autotools-utils.eclass settings
73 -AUTOTOOLS_AUTORECONF="1"
74 -AUTOTOOLS_IN_SOURCE_BUILD="1"
75 -DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt )
76 -
77 -pkg_setup() {
78 - if use aspell && use spell; then
79 - ewarn "NOTE: You have both USE flags 'aspell' and 'spell' enabled, enchant (USE flag 'spell') will be preferred."
80 - fi
81 -}
82 -
83 -src_configure() {
84 - local myeconfargs=(
85 - $(use_enable crypt gpgme) \
86 - $(use_enable otr) \
87 - $(use_enable aspell) \
88 - $(use_enable spell enchant) \
89 - $(use_enable modules) \
90 - $(use_with idn libidn)
91 - )
92 - autotools-utils_src_configure
93 -}
94 -
95 -src_install() {
96 - autotools-utils_src_install
97 -
98 - # clean unneeded language documentation
99 - for i in ${LANGS}; do
100 - use l10n_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
101 - done
102 -
103 - # contrib themes
104 - insinto /usr/share/${PN}/themes
105 - doins "${S}"/contrib/themes/*
106 -
107 - # contrib generic scripts
108 - exeinto /usr/share/${PN}/scripts
109 - doexe "${S}"/contrib/*.{pl,py}
110 -
111 - # contrib event scripts
112 - exeinto /usr/share/${PN}/scripts/events
113 - doexe "${S}"/contrib/events/*
114 -
115 - if use vim-syntax; then
116 - cd contrib/vim/ || die
117 -
118 - insinto /usr/share/vim/vimfiles/syntax
119 - doins mcabber_log-syntax.vim
120 -
121 - insinto /usr/share/vim/vimfiles/ftdetect
122 - doins mcabber_log-ftdetect.vim
123 - fi
124 -}
125 -
126 -pkg_postinst() {
127 - elog
128 - elog "MCabber requires you to create a subdirectory .mcabber in your home"
129 - elog "directory and to place a configuration file there."
130 - elog "An example mcabberrc was installed as part of the documentation."
131 - elog "To create a new mcabberrc based on the example mcabberrc, execute the"
132 - elog "following commands:"
133 - elog
134 - elog " mkdir -p ~/.mcabber"
135 - elog " bzcat ${EROOT}usr/share/doc/${PF}/mcabberrc.example.bz2 >~/.mcabber/mcabberrc"
136 - elog
137 - elog "Then edit ~/.mcabber/mcabberrc with your favorite editor."
138 - elog
139 - elog "See the CONFIGURATION FILE and FILES sections of the mcabber"
140 - elog "manual page (section 1) for more information."
141 - elog
142 - elog "From version 0.9.0 on, MCabber supports PGP encryption of messages."
143 - elog "See README_PGP.txt for details."
144 - echo
145 - einfo "Check out ${EROOT}usr/share/${PN} for contributed themes and event scripts."
146 - echo
147 -}
148
149 diff --git a/net-im/mcabber/mcabber-1.1.0.ebuild b/net-im/mcabber/mcabber-1.1.0.ebuild
150 deleted file mode 100644
151 index dd1947a86ba..00000000000
152 --- a/net-im/mcabber/mcabber-1.1.0.ebuild
153 +++ /dev/null
154 @@ -1,116 +0,0 @@
155 -# Copyright 1999-2018 Gentoo Foundation
156 -# Distributed under the terms of the GNU General Public License v2
157 -
158 -EAPI=5
159 -
160 -inherit flag-o-matic autotools-utils
161 -
162 -DESCRIPTION="A small Jabber console client with various features, like MUC, SSL, PGP"
163 -HOMEPAGE="http://mcabber.com/"
164 -#REV="a18e1b488f1c"
165 -#SRC_URI="http://mcabber.com/hg/index.cgi/archive/${REV}.tar.gz -> ${P}.tar.gz"
166 -SRC_URI="http://mcabber.com/files/${P}.tar.bz2"
167 -
168 -#S=${WORKDIR}/${PN}-${REV}/${PN}
169 -
170 -LICENSE="GPL-2"
171 -SLOT="0"
172 -KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
173 -
174 -IUSE="aspell crypt idn modules otr spell ssl vim-syntax"
175 -
176 -LANGS="cs de fr it nl pl ru uk"
177 -# localized help versions are installed only, when L10N var is set
178 -for i in ${LANGS}; do
179 - IUSE="${IUSE} l10n_${i}"
180 -done;
181 -
182 -RDEPEND="crypt? ( >=app-crypt/gpgme-1.0.0 )
183 - otr? ( >=net-libs/libotr-3.1.0 )
184 - aspell? ( app-text/aspell )
185 - vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
186 - idn? ( net-dns/libidn )
187 - spell? ( app-text/enchant )
188 - dev-libs/glib:2
189 - net-libs/libnsl:0=
190 - sys-libs/ncurses:0=
191 - >=net-libs/loudmouth-1.4.3-r1[ssl?]"
192 -DEPEND="${RDEPEND}
193 - virtual/pkgconfig"
194 -
195 -## autotools-utils.eclass settings
196 -AUTOTOOLS_AUTORECONF="1"
197 -AUTOTOOLS_IN_SOURCE_BUILD="1"
198 -DOCS=( AUTHORS ChangeLog NEWS README TODO mcabberrc.example doc/README_PGP.txt )
199 -
200 -pkg_setup() {
201 - if use aspell && use spell; then
202 - ewarn "NOTE: You have both USE flags 'aspell' and 'spell' enabled, enchant (USE flag 'spell') will be preferred."
203 - fi
204 -}
205 -
206 -src_configure() {
207 - local myeconfargs=(
208 - $(use_enable crypt gpgme) \
209 - $(use_enable otr) \
210 - $(use_enable aspell) \
211 - $(use_enable spell enchant) \
212 - $(use_enable modules) \
213 - $(use_with idn libidn)
214 - )
215 - autotools-utils_src_configure
216 -}
217 -
218 -src_install() {
219 - autotools-utils_src_install
220 -
221 - # clean unneeded language documentation
222 - for i in ${LANGS}; do
223 - use l10n_${i} || rm -rf "${ED}"/usr/share/${PN}/help/${i}
224 - done
225 -
226 - # contrib themes
227 - insinto /usr/share/${PN}/themes
228 - doins "${S}"/contrib/themes/*
229 -
230 - # contrib generic scripts
231 - exeinto /usr/share/${PN}/scripts
232 - doexe "${S}"/contrib/*.{pl,py}
233 -
234 - # contrib event scripts
235 - exeinto /usr/share/${PN}/scripts/events
236 - doexe "${S}"/contrib/events/*
237 -
238 - if use vim-syntax; then
239 - cd contrib/vim/ || die
240 -
241 - insinto /usr/share/vim/vimfiles/syntax
242 - doins mcabber_log-syntax.vim
243 -
244 - insinto /usr/share/vim/vimfiles/ftdetect
245 - doins mcabber_log-ftdetect.vim
246 - fi
247 -}
248 -
249 -pkg_postinst() {
250 - elog
251 - elog "MCabber requires you to create a subdirectory .mcabber in your home"
252 - elog "directory and to place a configuration file there."
253 - elog "An example mcabberrc was installed as part of the documentation."
254 - elog "To create a new mcabberrc based on the example mcabberrc, execute the"
255 - elog "following commands:"
256 - elog
257 - elog " mkdir -p ~/.mcabber"
258 - elog " bzcat ${EROOT}usr/share/doc/${PF}/mcabberrc.example.bz2 >~/.mcabber/mcabberrc"
259 - elog
260 - elog "Then edit ~/.mcabber/mcabberrc with your favorite editor."
261 - elog
262 - elog "See the CONFIGURATION FILE and FILES sections of the mcabber"
263 - elog "manual page (section 1) for more information."
264 - elog
265 - elog "From version 0.9.0 on, MCabber supports PGP encryption of messages."
266 - elog "See README_PGP.txt for details."
267 - echo
268 - einfo "Check out ${EROOT}usr/share/${PN} for contributed themes and event scripts."
269 - echo
270 -}