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.1.2.ebuild
Date: Fri, 03 Sep 2010 07:16:43
Message-Id: 20100903071633.4A75520051@flycatcher.gentoo.org
1 caster 10/09/03 07:16:33
2
3 Modified: ChangeLog
4 Added: taskcoach-1.1.2.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2_rc72/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.56 app-office/taskcoach/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.56&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.56&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?r1=1.55&r2=1.56
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v
20 retrieving revision 1.55
21 retrieving revision 1.56
22 diff -u -r1.55 -r1.56
23 --- ChangeLog 31 Aug 2010 09:45:17 -0000 1.55
24 +++ ChangeLog 3 Sep 2010 07:16:33 -0000 1.56
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-office/taskcoach
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.55 2010/08/31 09:45:17 fauli Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.56 2010/09/03 07:16:33 caster Exp $
30 +
31 +*taskcoach-1.1.2 (03 Sep 2010)
32 +
33 + 03 Sep 2010; Vlastimil Babka <caster@g.o> +taskcoach-1.1.2.ebuild:
34 + Version bump.
35
36 31 Aug 2010; Christian Faulhammer <fauli@g.o>
37 taskcoach-1.0.10.ebuild:
38
39
40
41 1.1 app-office/taskcoach/taskcoach-1.1.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/taskcoach-1.1.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/taskcoach-1.1.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: taskcoach-1.1.2.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-office/taskcoach/taskcoach-1.1.2.ebuild,v 1.1 2010/09/03 07:16:33 caster Exp $
51
52 EAPI=3
53
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="2.4 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"
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_unpack() {
80 default
81
82 einfo "Removing Funambol support, works only on x86 and python 2.5."
83 rm -fv "${S}"/taskcoachlib/bin.in/linux/*.so || die
84 }
85
86 src_install() {
87 distutils_src_install
88
89 # a bit ugly but...
90 mv "${D}/usr/bin/taskcoach.py" "${D}/usr/bin/taskcoach" || die
91 for file in "${D}"/usr/bin/taskcoach.py-*; do
92 dir=$(dirname ${file})
93 ver=$(basename ${file})
94 ver=${ver#taskcoach.py-}
95 mv "${file}" "${dir}/taskcoach-${ver}" || die
96 done
97
98 doicon "icons.in/${PN}.png" || die
99 make_desktop_entry ${PN} "Task Coach" ${PN} Office || die
100 }