Gentoo Archives: gentoo-commits

From: "Ulrich Müller" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/emacs:master commit in: app-emacs/rudel/, app-emacs/rudel/files/
Date: Sat, 30 May 2020 08:54:55
Message-Id: 1590828814.a00855c2c9f225386866d0a30b86e42c65021855.ulm@gentoo
1 commit: a00855c2c9f225386866d0a30b86e42c65021855
2 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 30 08:53:34 2020 +0000
4 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
5 CommitDate: Sat May 30 08:53:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=a00855c2
7
8 app-emacs/rudel: Remove live ebuild.
9
10 bzr.eclass is gone.
11
12 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
13
14 app-emacs/rudel/files/60rudel-gentoo.el | 13 ----------
15 app-emacs/rudel/metadata.xml | 16 ------------
16 app-emacs/rudel/rudel-9999.ebuild | 44 ---------------------------------
17 3 files changed, 73 deletions(-)
18
19 diff --git a/app-emacs/rudel/files/60rudel-gentoo.el b/app-emacs/rudel/files/60rudel-gentoo.el
20 deleted file mode 100644
21 index 2383074..0000000
22 --- a/app-emacs/rudel/files/60rudel-gentoo.el
23 +++ /dev/null
24 @@ -1,13 +0,0 @@
25 -(add-to-list 'load-path "@SITELISP@")
26 -(autoload 'rudel-join-session "rudel-loaddefs"
27 - "Start a collaborative Rudel session" t)
28 -(autoload 'rudel-host-session "rudel-loaddefs"
29 - "Host a collaborative Rudel session" t)
30 -(autoload 'rudel-speedbar "rudel-loaddefs"
31 - "Show connected users and documents for the Rudel session in speedbar" t)
32 -(autoload 'global-rudel-minor-mode "rudel-loaddefs"
33 - "Bindings for rudel session-level commands" t)
34 -
35 -;;(global-set-key (kbd "C-c c j") 'rudel-join-session)
36 -
37 -(setq rudel-icons-directory "@SITEETC@/icons/")
38
39 diff --git a/app-emacs/rudel/metadata.xml b/app-emacs/rudel/metadata.xml
40 deleted file mode 100644
41 index 5dedbfa..0000000
42 --- a/app-emacs/rudel/metadata.xml
43 +++ /dev/null
44 @@ -1,16 +0,0 @@
45 -<?xml version="1.0" encoding="UTF-8"?>
46 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
47 -<pkgmetadata>
48 -<maintainer type="project">
49 - <email>gnu-emacs@g.o</email>
50 - <name>Gentoo GNU Emacs project</name>
51 -</maintainer>
52 -<longdescription>
53 - Rudel is collaborative editing environment for GNU Emacs. Its purpose
54 - is tod share buffers with other users in order to edit the contents
55 - of those buffers collaboratively. Rudel supports multiple backends to
56 - enable communication with other collaborative editors using different
57 - protocols, though currently Obby (for use with the Gobby editor) is
58 - the only fully-functional one.
59 -</longdescription>
60 -</pkgmetadata>
61
62 diff --git a/app-emacs/rudel/rudel-9999.ebuild b/app-emacs/rudel/rudel-9999.ebuild
63 deleted file mode 100644
64 index fcaeed4..0000000
65 --- a/app-emacs/rudel/rudel-9999.ebuild
66 +++ /dev/null
67 @@ -1,44 +0,0 @@
68 -# Copyright 1999-2014 Gentoo Foundation
69 -# Distributed under the terms of the GNU General Public License v2
70 -
71 -EAPI=5
72 -
73 -inherit readme.gentoo elisp bzr
74 -
75 -EBZR_REPO_URI="bzr://rudel.bzr.sourceforge.net/bzrroot/rudel/trunk"
76 -DESCRIPTION="Collaborative editing environment for GNU Emacs"
77 -HOMEPAGE="http://rudel.sourceforge.net/
78 - http://www.emacswiki.org/emacs/Rudel"
79 -
80 -LICENSE="GPL-3+"
81 -SLOT="0"
82 -
83 -SITEFILE="60${PN}-gentoo.el"
84 -
85 -src_compile() {
86 - ${EMACS} ${EMACSFLAGS} -l rudel-compile.el || die
87 -}
88 -
89 -src_install() {
90 - local dir
91 -
92 - for dir in . adopted infinote jupiter obby socket telepathy tls \
93 - xmpp zeroconf
94 - do
95 - insinto "${SITELISP}/${PN}/${dir}"
96 - doins ${dir}/*.{el,elc}
97 - done
98 -
99 - elisp-site-file-install "${FILESDIR}/${SITEFILE}"
100 -
101 - insinto "${SITEETC}/${PN}"
102 - doins -r icons
103 -
104 - dodoc README INSTALL ChangeLog TODO doc/card.pdf
105 -
106 - DOC_CONTENTS="Connections to Gobby servers require the gnutls-cli program
107 - (net-libs/gnutls).
108 - \\n\\nThe Avahi daemon (net-dns/avahi) is required for automatic
109 - session discovery and advertising."
110 - readme.gentoo_create_doc
111 -}