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/rst: ChangeLog rst-0.6-r1.ebuild
Date: Sun, 31 Jan 2010 11:14:34
Message-Id: E1NbXl7-0005wm-GO@stork.gentoo.org
1 ulm 10/01/31 11:14:29
2
3 Modified: ChangeLog
4 Added: rst-0.6-r1.ebuild
5 Log:
6 Add prefix keywords, change EAPI to 3.
7 (Portage version: 2.2_rc62/cvs/Linux i686)
8
9 Revision Changes Path
10 1.40 app-emacs/rst/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/rst/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/rst/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/rst/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-emacs/rst/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 8 Dec 2009 19:34:35 -0000 1.39
23 +++ ChangeLog 31 Jan 2010 11:14:28 -0000 1.40
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-emacs/rst
26 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/rst/ChangeLog,v 1.39 2009/12/08 19:34:35 nixnut Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/rst/ChangeLog,v 1.40 2010/01/31 11:14:28 ulm Exp $
30 +
31 +*rst-0.6-r1 (31 Jan 2010)
32 +
33 + 31 Jan 2010; Ulrich Mueller <ulm@g.o> +rst-0.6-r1.ebuild:
34 + Add prefix keywords, change EAPI to 3.
35
36 08 Dec 2009; nixnut <nixnut@g.o> rst-0.5-r1.ebuild:
37 ppc stable #290041
38
39
40
41 1.1 app-emacs/rst/rst-0.6-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/rst/rst-0.6-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/rst/rst-0.6-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rst-0.6-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-emacs/rst/rst-0.6-r1.ebuild,v 1.1 2010/01/31 11:14:28 ulm Exp $
51
52 EAPI=3
53
54 inherit elisp
55
56 DESCRIPTION="ReStructuredText support for Emacs"
57 HOMEPAGE="http://www.emacswiki.org/cgi-bin/wiki/reStructuredText"
58 SRC_URI="mirror://sourceforge/docutils/docutils-${PV}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~x86-macos"
63 IUSE=""
64
65 S="${WORKDIR}/docutils-${PV}/tools/editors/emacs"
66 DOCS="README.txt"
67 SITEFILE="50${PN}-gentoo.el"
68
69 pkg_setup() {
70 local have_emacs=$(elisp-emacs-version)
71 if [ "${have_emacs%%.*}" -ge 23 ]; then
72 echo
73 elog "Please note that \"${PN}\" is already included with Emacs 23 or"
74 elog "later, so ${CATEGORY}/${PN} is only needed for lower versions."
75 elog "You may select the active Emacs version with \"eselect emacs\"."
76 fi
77 }
78
79 src_install() {
80 elisp_src_install
81 # prevent inclusion of package dir by subdirs.el
82 touch "${ED}${SITELISP}/${PN}/.nosearch"
83 }