Gentoo Archives: gentoo-commits

From: "Dominik Kapusta (ayoy)" <ayoy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/wklej: ChangeLog wklej-0.2.0.ebuild
Date: Tue, 29 Jun 2010 16:47:10
Message-Id: 20100629164703.B17BB2C621@corvid.gentoo.org
1 ayoy 10/06/29 16:47:03
2
3 Modified: ChangeLog
4 Added: wklej-0.2.0.ebuild
5 Log:
6 Version bump (bug #326155). Thanks to Paweł Kilian <pkilian@×××××.org> for the updated ebuild.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.23 app-text/wklej/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/wklej/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/wklej/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/wklej/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/wklej/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 21 May 2010 19:00:53 -0000 1.22
23 +++ ChangeLog 29 Jun 2010 16:47:03 -0000 1.23
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-text/wklej
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/wklej/ChangeLog,v 1.22 2010/05/21 19:00:53 pacho Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/wklej/ChangeLog,v 1.23 2010/06/29 16:47:03 ayoy Exp $
29 +
30 +*wklej-0.2.0 (29 Jun 2010)
31 +
32 + 29 Jun 2010; Dominik Kapusta <ayoy@g.o> +wklej-0.2.0.ebuild:
33 + Version bump (bug #326155). Thanks to Paweł Kilian <pkilian@×××××.org>
34 + for the updated ebuild.
35
36 21 May 2010; Pacho Ramos <pacho@g.o> wklej-0.1.7.ebuild:
37 stable amd64, bug 302824
38
39
40
41 1.1 app-text/wklej/wklej-0.2.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/wklej/wklej-0.2.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/wklej/wklej-0.2.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wklej-0.2.0.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-text/wklej/wklej-0.2.0.ebuild,v 1.1 2010/06/29 16:47:03 ayoy Exp $
51
52 EAPI=2
53
54 inherit eutils
55
56 DESCRIPTION="A wklej.org submitter"
57 HOMEPAGE="http://wklej.org"
58 SRC_URI="http://wklej.org/m/apps/wklej-${PV}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86 ~x86-fbsd"
63 IUSE="+vim"
64
65 DEPEND="${RDEPEND}"
66 RDEPEND="dev-lang/python
67 vim? ( app-editors/vim[python] )"
68
69 src_install() {
70 if use vim; then
71 insinto /usr/share/vim/vimfiles/plugin
72 doins "${WORKDIR}"/${PN}.vim || die "Failed to install vim plugin"
73 fi
74
75 dobin "${WORKDIR}"/${PN} || die "Failed to install ${PN} script"
76 dodoc "${WORKDIR}"/README || die "Failed to install readme"
77 dodoc "${WORKDIR}"/wklejrc || die "Failed to install wklejrc"
78 }
79
80 pkg_postinst() {
81 elog "There are lots of changes in ${PV} version"
82 elog "Check out the README file in /usr/share/doc/${P}/README.bz2"
83 elog "Example of .wklejrc file /usr/share/doc/${P}/wklejrc.bz2"
84 }