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-0.71.1.ebuild taskcoach-0.71.0.ebuild
Date: Mon, 13 Oct 2008 22:26:38
Message-Id: E1KpVs4-0004ew-Io@stork.gentoo.org
1 caster 08/10/13 22:26:36
2
3 Modified: ChangeLog
4 Added: taskcoach-0.71.1.ebuild
5 Removed: taskcoach-0.71.0.ebuild
6 Log:
7 Version bump, bug fixes. Works on amd64 again, funambol synchronization not supported there though.
8 (Portage version: 2.2_rc12/cvs/Linux 2.6.26-gentoo-r1-perfctr x86_64)
9
10 Revision Changes Path
11 1.14 app-office/taskcoach/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.14&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.14&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?r1=1.13&r2=1.14
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v
20 retrieving revision 1.13
21 retrieving revision 1.14
22 diff -u -r1.13 -r1.14
23 --- ChangeLog 12 Oct 2008 10:55:56 -0000 1.13
24 +++ ChangeLog 13 Oct 2008 22:26:36 -0000 1.14
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-office/taskcoach
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.13 2008/10/12 10:55:56 caster Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.14 2008/10/13 22:26:36 caster Exp $
30 +
31 +*taskcoach-0.71.1 (13 Oct 2008)
32 +
33 + 13 Oct 2008; Vlastimil Babka <caster@g.o> -taskcoach-0.71.0.ebuild,
34 + +taskcoach-0.71.1.ebuild:
35 + Version bump, bug fixes. Works on amd64 again, funambol synchronization
36 + not supported there though.
37
38 *taskcoach-0.71.0 (12 Oct 2008)
39
40
41
42
43 1.1 app-office/taskcoach/taskcoach-0.71.1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/taskcoach-0.71.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/taskcoach-0.71.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: taskcoach-0.71.1.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/taskcoach-0.71.1.ebuild,v 1.1 2008/10/13 22:26:36 caster Exp $
53
54 inherit distutils eutils
55
56 MY_PN="TaskCoach"
57 MY_P="${MY_PN}-${PV}"
58
59 DESCRIPTION="Simple personal tasks and todo lists manager"
60 HOMEPAGE="http://www.taskcoach.org"
61 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
62 LICENSE="GPL-3"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66 DEPEND=">=dev-lang/python-2.4
67 =dev-python/wxpython-2.8*"
68 RDEPEND="${DEPEND}"
69
70 S="${WORKDIR}/${MY_P}"
71
72 DOCS="CHANGES.txt"
73
74 src_unpack() {
75 distutils_src_unpack
76
77 cd "${S}"
78 if ! use x86; then
79 elog "Removing Funambol support, works only on x86."
80 rm -fv taskcoachlib/bin.in/linux/*.so || die
81 fi
82 }
83
84 src_install() {
85 distutils_src_install
86
87 mv "${D}/usr/bin/taskcoach.py" "${D}/usr/bin/taskcoach" || die
88 rm "${D}/usr/bin/taskcoach.pyw" || die
89
90 doicon "icons.in/${PN}.png" || die
91 make_desktop_entry ${PN} "Task Coach" ${PN} Office || die
92 }