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