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