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: tramp-2.1.15.ebuild ChangeLog
Date: Sun, 01 Feb 2009 11:09:47
Message-Id: E1LTaCv-0000ob-FB@stork.gentoo.org
1 ulm 09/02/01 11:09:45
2
3 Modified: ChangeLog
4 Added: tramp-2.1.15.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc23/cvs/Linux i686)
8
9 Revision Changes Path
10 1.76 app-emacs/tramp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/tramp/ChangeLog?rev=1.76&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/tramp/ChangeLog?rev=1.76&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/tramp/ChangeLog?r1=1.75&r2=1.76
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/tramp/ChangeLog,v
19 retrieving revision 1.75
20 retrieving revision 1.76
21 diff -u -r1.75 -r1.76
22 --- ChangeLog 11 Nov 2008 06:24:57 -0000 1.75
23 +++ ChangeLog 1 Feb 2009 11:09:45 -0000 1.76
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-emacs/tramp
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/ChangeLog,v 1.75 2008/11/11 06:24:57 ulm Exp $
28 +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/ChangeLog,v 1.76 2009/02/01 11:09:45 ulm Exp $
30 +
31 +*tramp-2.1.15 (01 Feb 2009)
32 +
33 + 01 Feb 2009; Ulrich Mueller <ulm@g.o> +tramp-2.1.15.ebuild:
34 + Version bump.
35
36 11 Nov 2008; Ulrich Mueller <ulm@g.o>
37 -files/tramp-2.1.11-environment_fix.patch, -tramp-2.0.55.ebuild,
38
39
40
41 1.1 app-emacs/tramp/tramp-2.1.15.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/tramp/tramp-2.1.15.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/tramp/tramp-2.1.15.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tramp-2.1.15.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emacs/tramp/tramp-2.1.15.ebuild,v 1.1 2009/02/01 11:09:45 ulm Exp $
51
52 inherit elisp eutils
53
54 DESCRIPTION="Edit remote files like ange-ftp but with rlogin, telnet and/or ssh"
55 HOMEPAGE="http://www.gnu.org/software/tramp/"
56 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
57
58 LICENSE="GPL-3 FDL-1.3"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
61 IUSE=""
62
63 SITEFILE="51${PN}-gentoo.el"
64
65 src_compile() {
66 econf || die "econf failed"
67 emake || die "emake failed"
68 elisp-make-autoload-file lisp/${PN}-autoloads.el lisp \
69 || die "elisp-make-autoload-file failed"
70 }
71
72 src_install() {
73 einstall lispdir="${D}${SITELISP}/tramp" || die
74
75 mv "${D}"/usr/share/info/tramp{,.info}
76
77 dohtml texi/*.html
78 if [ -f texi/tramp.dvi ]; then
79 insinto /usr/share/doc/${PF}
80 doins texi/tramp.dvi
81 fi
82
83 elisp-install ${PN} lisp/${PN}-autoloads.el || die
84 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
85
86 dodoc README ChangeLog CONTRIBUTORS || die
87 newdoc lisp/ChangeLog ChangeLog-lisp || die
88 newdoc texi/ChangeLog ChangeLog-texi || die
89 }