Gentoo Archives: gentoo-commits

From: "Ulrich Mueller (ulm)" <ulm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-emacs/tramp: ChangeLog tramp-2.1.10-r1.ebuild tramp-2.1.10.ebuild
Date: Tue, 25 Sep 2007 14:40:35
Message-Id: E1IaBSM-0000S1-2t@stork.gentoo.org
1 ulm 07/09/25 14:32:10
2
3 Modified: ChangeLog
4 Added: tramp-2.1.10-r1.ebuild
5 Removed: tramp-2.1.10.ebuild
6 Log:
7 Define copy-tree function for Emacs 21 compatibility. Fixes bug #193707.
8 (Portage version: 2.1.3.9, RepoMan options: --force)
9
10 Revision Changes Path
11 1.44 app-emacs/tramp/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/tramp/ChangeLog?rev=1.44&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/tramp/ChangeLog?rev=1.44&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/tramp/ChangeLog?r1=1.43&r2=1.44
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-emacs/tramp/ChangeLog,v
20 retrieving revision 1.43
21 retrieving revision 1.44
22 diff -u -r1.43 -r1.44
23 --- ChangeLog 23 Sep 2007 16:47:46 -0000 1.43
24 +++ ChangeLog 25 Sep 2007 14:32:09 -0000 1.44
25 @@ -1,6 +1,14 @@
26 # ChangeLog for app-emacs/tramp
27 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/ChangeLog,v 1.43 2007/09/23 16:47:46 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/ChangeLog,v 1.44 2007/09/25 14:32:09 ulm Exp $
30 +
31 +*tramp-2.1.10-r1 (25 Sep 2007)
32 +
33 + 25 Sep 2007; Ulrich Mueller <ulm@g.o>
34 + +files/tramp-2.1.10-copy-tree-gentoo.patch, -tramp-2.1.10.ebuild,
35 + +tramp-2.1.10-r1.ebuild:
36 + Define copy-tree function for Emacs 21 compatibility. Fixes bug #193707,
37 + reported by Michael Mysinger <cybersol@×××××.com>.
38
39 23 Sep 2007; Raúl Porcel <armin76@g.o> tramp-2.0.56.ebuild,
40 tramp-2.1.10.ebuild:
41
42
43
44 1.1 app-emacs/tramp/tramp-2.1.10-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/tramp/tramp-2.1.10-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/tramp/tramp-2.1.10-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: tramp-2.1.10-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2007 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/tramp-2.1.10-r1.ebuild,v 1.1 2007/09/25 14:32:09 ulm Exp $
54
55 inherit elisp eutils
56
57 DESCRIPTION="Edit remote files like ange-ftp but with rlogin, telnet and/or ssh"
58 HOMEPAGE="http://savannah.gnu.org/projects/tramp/"
59 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
60
61 LICENSE="GPL-3 FDL-1.2"
62 SLOT="0"
63 KEYWORDS="alpha ~amd64 ppc ~sparc x86"
64 IUSE=""
65
66 SITEFILE=51${PN}-gentoo.el
67
68 src_unpack() {
69 unpack ${A}
70 epatch "${FILESDIR}/${P}-fix-texinfo.patch"
71 epatch "${FILESDIR}/${P}-copy-tree-gentoo.patch"
72 }
73
74 src_compile() {
75 econf || die "econf failed"
76 emake || die "emake failed"
77 elisp-make-autoload-file lisp/${PN}-autoloads.el lisp \
78 || die "elisp-make-autoload-file failed"
79 }
80
81 src_install() {
82 dodir /usr/share/info
83 dodir /usr/share/emacs/etc
84 dodir /usr/share/emacs/site-lisp/tramp
85
86 einstall lispdir="${D}/usr/share/emacs/site-lisp/tramp" || die
87
88 mv "${D}/usr/share/info/tramp" "${D}/usr/share/info/tramp-info"
89
90 dohtml texi/*.html
91 if [ -f texi/tramp.dvi ]; then
92 insinto /usr/share/doc/${PF}
93 doins texi/tramp.dvi
94 fi
95
96 elisp-install ${PN} lisp/${PN}-autoloads.el
97 elisp-site-file-install "${FILESDIR}/${SITEFILE}"
98
99 dodoc README ChangeLog CONTRIBUTORS || die "dodoc failed"
100 }
101
102
103
104 --
105 gentoo-commits@g.o mailing list