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.27.ebuild
Date: Tue, 06 Sep 2011 08:58:38
Message-Id: 20110906085827.71E792004C@flycatcher.gentoo.org
1 caster 11/09/06 08:58:27
2
3 Modified: ChangeLog
4 Added: taskcoach-1.2.27.ebuild
5 Log:
6 Version bump, bug #379221.
7
8 (Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.75 app-office/taskcoach/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.75&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.75&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?r1=1.74&r2=1.75
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v
20 retrieving revision 1.74
21 retrieving revision 1.75
22 diff -u -r1.74 -r1.75
23 --- ChangeLog 29 Jul 2011 06:55:23 -0000 1.74
24 +++ ChangeLog 6 Sep 2011 08:58:27 -0000 1.75
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.74 2011/07/29 06:55:23 caster Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.75 2011/09/06 08:58:27 caster Exp $
30 +
31 +*taskcoach-1.2.27 (06 Sep 2011)
32 +
33 + 06 Sep 2011; Vlastimil Babka <caster@g.o> +taskcoach-1.2.27.ebuild:
34 + Version bump, bug #379221.
35
36 *taskcoach-1.2.24 (29 Jul 2011)
37
38
39
40
41 1.1 app-office/taskcoach/taskcoach-1.2.27.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/taskcoach-1.2.27.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/taskcoach-1.2.27.ebuild?rev=1.1&content-type=text/plain
45
46 Index: taskcoach-1.2.27.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.27.ebuild,v 1.1 2011/09/06 08:58:27 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 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_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 }