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-emacs/twittering-mode/
Date: Wed, 31 Aug 2022 10:26:28
Message-Id: 1661941577.4a2475fb62403015933dff0f0dfb68201413012c.ulm@gentoo
1 commit: 4a2475fb62403015933dff0f0dfb68201413012c
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 31 10:20:01 2022 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 31 10:26:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a2475fb
7
8 app-emacs/twittering-mode: drop 2.0.0
9
10 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
11
12 app-emacs/twittering-mode/Manifest | 1 -
13 .../twittering-mode/twittering-mode-2.0.0.ebuild | 40 ----------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/app-emacs/twittering-mode/Manifest b/app-emacs/twittering-mode/Manifest
17 index a3f34a702e9e..c817dcd6322c 100644
18 --- a/app-emacs/twittering-mode/Manifest
19 +++ b/app-emacs/twittering-mode/Manifest
20 @@ -1,2 +1 @@
21 -DIST twittering-mode-2.0.0.tar.gz 615223 BLAKE2B 1fc5ceb440ac9a00dde4d49cd48580d3e8f78ed2e9bccb8b2dcf41c6be1c7e0394c8db958e6ab4ac632b91bbdfc9a0930ad3867584d642b3f90b15a7bc0132d5 SHA512 318768c54c99c03c7641bfeb8396fdcaf65752121da6a64e6af9c071b6c429f73e44d1698df600915c4c7042233ef96cf86c037eece21b00d8e52a01ae569601
22 DIST twittering-mode-3.0.0.tar.gz 1363235 BLAKE2B 31801fcb339cab42c7b9a9bfb186ef6a21570be16dd90d36baaabe97ec9fc93bdc35ead707e366e7262347158da145c04a6f51340abd3386b8c2a9fd8b5d417b SHA512 c696a8f31abcf6944c127575719d3e9b24a2bfb6271e0193e2a6faa8137c6468c7686b88d1e4ec0c3cc3b833e26853b435726d1acb422e9f37d3c0334e278494
23
24 diff --git a/app-emacs/twittering-mode/twittering-mode-2.0.0.ebuild b/app-emacs/twittering-mode/twittering-mode-2.0.0.ebuild
25 deleted file mode 100644
26 index 29249a843c01..000000000000
27 --- a/app-emacs/twittering-mode/twittering-mode-2.0.0.ebuild
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit elisp
36 -
37 -if [[ ${PV} == *9999 ]]; then
38 - EGIT_REPO_URI="https://github.com/hayamiz/twittering-mode.git"
39 - inherit git-r3
40 - IUSE="doc"
41 -else
42 - SRC_URI="mirror://sourceforge/twmode/${P}.tar.gz"
43 - KEYWORDS="~amd64 ~x86"
44 - RESTRICT="test"
45 - IUSE=""
46 -fi
47 -
48 -DESCRIPTION="Emacs major mode for Twitter"
49 -HOMEPAGE="http://twmode.sourceforge.net/"
50 -
51 -LICENSE="GPL-2+"
52 -SLOT="0"
53 -
54 -DEPEND=""
55 -RDEPEND="app-crypt/gnupg"
56 -
57 -src_compile() {
58 - elisp-compile twittering-mode.el
59 - [[ ${PV} == *9999 ]] && use doc && emake -C doc/manual
60 -}
61 -
62 -src_test() {
63 - emake check
64 -}
65 -
66 -src_install() {
67 - [[ ${PV} == *9999 ]] && use doc && dodoc doc/manual/twmode/twmode.html
68 - elisp-install ${PN} twittering-mode.el *.elc
69 -}