Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/bicyclerepair: bicyclerepair-0.9-r3.ebuild ChangeLog
Date: Mon, 29 Dec 2014 06:59:53
Message-Id: 20141229065948.DEA73E679@oystercatcher.gentoo.org
1 idella4 14/12/29 06:59:48
2
3 Modified: ChangeLog
4 Added: bicyclerepair-0.9-r3.ebuild
5 Log:
6 revbump; conversion -> distutils-r1
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.31 dev-python/bicyclerepair/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bicyclerepair/ChangeLog?rev=1.31&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bicyclerepair/ChangeLog?rev=1.31&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bicyclerepair/ChangeLog?r1=1.30&r2=1.31
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/bicyclerepair/ChangeLog,v
20 retrieving revision 1.30
21 retrieving revision 1.31
22 diff -u -r1.30 -r1.31
23 --- ChangeLog 1 Dec 2012 01:56:17 -0000 1.30
24 +++ ChangeLog 29 Dec 2014 06:59:48 -0000 1.31
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/bicyclerepair
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/bicyclerepair/ChangeLog,v 1.30 2012/12/01 01:56:17 radhermit Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/bicyclerepair/ChangeLog,v 1.31 2014/12/29 06:59:48 idella4 Exp $
31 +
32 +*bicyclerepair-0.9-r3 (29 Dec 2014)
33 +
34 + 29 Dec 2014; Ian Delaney <idella4@g.o> +bicyclerepair-0.9-r3.ebuild:
35 + revbump; conversion -> distutils-r1
36
37 01 Dec 2012; Tim Harder <radhermit@g.o> bicyclerepair-0.9-r2.ebuild:
38 Fix LICENSE (bug #445410 by ulm).
39 @@ -117,4 +122,3 @@
40
41 08 Mar 2003; Alastair Tse <liquidx@g.o> bicyclerepair-0.7.1.ebuild:
42 initial ebuild. thanks to Lin Zhemin <ljm@×××××××.tw> (#16448)
43 -
44
45
46
47 1.1 dev-python/bicyclerepair/bicyclerepair-0.9-r3.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bicyclerepair/bicyclerepair-0.9-r3.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/bicyclerepair/bicyclerepair-0.9-r3.ebuild?rev=1.1&content-type=text/plain
51
52 Index: bicyclerepair-0.9-r3.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-python/bicyclerepair/bicyclerepair-0.9-r3.ebuild,v 1.1 2014/12/29 06:59:48 idella4 Exp $
57
58 EAPI=5
59 PYTHON_COMPAT=( python2_7 )
60
61 inherit distutils-r1 elisp-common
62
63 DESCRIPTION="Bicycle Repair Man is the Python Refactoring Browser"
64 HOMEPAGE="http://bicyclerepair.sourceforge.net/"
65 SRC_URI="mirror://sourceforge/bicyclerepair/${P}.tar.gz"
66
67 LICENSE="icu GPL-2+"
68 SLOT="0"
69 KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86"
70 IUSE="emacs"
71
72 DEPEND="emacs? (
73 app-emacs/pymacs[${PYTHON_USEDEP}]
74 app-emacs/python-mode )"
75 RDEPEND="${DEPEND}"
76
77 SITEFILE="50${PN}-gentoo.el"
78 PYTHON_MODNAME="BicycleRepairMan_Idle.py bike bikeemacs.py"
79
80 python_prepare_all() {
81 # bikeemacs.py contains non-ASCII characters in comments.
82 sed -e '1s/$/\t-*- coding: latin-1 -*-/' -i ide-integration/bikeemacs.py || die "sed failed"
83 epatch "${FILESDIR}/${P}-idle.patch"
84 epatch "${FILESDIR}/${P}-invalid-syntax.patch"
85
86 distutils-r1_python_prepare_all
87 }
88
89 python_test() {
90 "${PYTHON}" testall.py || die
91 }
92
93 src_install() {
94 distutils-r1_src_install
95
96 if use emacs; then
97 elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die "elisp-site-file-install failed"
98 fi
99 }
100
101 pkg_postinst() {
102 use emacs && elisp-site-regen
103 }
104
105 pkg_postrm() {
106 use emacs && elisp-site-regen
107 }