Gentoo Archives: gentoo-commits

From: "Vlastimil Babka (caster)" <caster@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/taskcoach: ChangeLog taskcoach-1.2.31.ebuild
Date: Sun, 20 Nov 2011 22:18:38
Message-Id: 20111120221827.EB6532004B@flycatcher.gentoo.org
1 caster 11/11/20 22:18:27
2
3 Modified: ChangeLog
4 Added: taskcoach-1.2.31.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha68/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.80 app-office/taskcoach/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.80&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.80&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?r1=1.79&r2=1.80
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v
20 retrieving revision 1.79
21 retrieving revision 1.80
22 diff -u -r1.79 -r1.80
23 --- ChangeLog 4 Nov 2011 23:23:25 -0000 1.79
24 +++ ChangeLog 20 Nov 2011 22:18:27 -0000 1.80
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-office/taskcoach
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.79 2011/11/04 23:23:25 caster Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.80 2011/11/20 22:18:27 caster Exp $
30 +
31 +*taskcoach-1.2.31 (20 Nov 2011)
32 +
33 + 20 Nov 2011; Vlastimil Babka <caster@g.o> +taskcoach-1.2.31.ebuild:
34 + Version bump.
35
36 *taskcoach-1.2.30 (04 Nov 2011)
37
38
39
40
41 1.1 app-office/taskcoach/taskcoach-1.2.31.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/taskcoach-1.2.31.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/taskcoach-1.2.31.ebuild?rev=1.1&content-type=text/plain
45
46 Index: taskcoach-1.2.31.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/taskcoach-1.2.31.ebuild,v 1.1 2011/11/20 22:18:27 caster Exp $
51
52 EAPI=3
53
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="2.4 2.5 3.*"
57 PYTHON_MODNAME="buildlib taskcoachlib"
58
59 inherit distutils eutils
60
61 MY_PN="TaskCoach"
62 MY_P="${MY_PN}-${PV}"
63
64 DESCRIPTION="Simple personal tasks and todo lists manager"
65 HOMEPAGE="http://www.taskcoach.org http://pypi.python.org/pypi/TaskCoach"
66 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
67 LICENSE="GPL-3"
68 SLOT="0"
69 KEYWORDS="~amd64 ~x86"
70 IUSE="libnotify"
71 DEPEND=">=dev-python/wxpython-2.8.9.2:2.8"
72 RDEPEND="${DEPEND}
73 libnotify? ( dev-python/notify-python )"
74
75 S="${WORKDIR}/${MY_P}"
76
77 DOCS="CHANGES.txt"
78
79 src_install() {
80 distutils_src_install
81
82 # a bit ugly but...
83 mv "${D}/usr/bin/taskcoach.py" "${D}/usr/bin/taskcoach" || die
84 for file in "${D}"/usr/bin/taskcoach.py-*; do
85 dir=$(dirname ${file})
86 ver=$(basename ${file})
87 ver=${ver#taskcoach.py-}
88 mv "${file}" "${dir}/taskcoach-${ver}" || die
89 done
90
91 doicon "icons.in/${PN}.png" || die
92 make_desktop_entry ${PN} "Task Coach" ${PN} Office || die
93 }