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.0.3.ebuild
Date: Sun, 25 Apr 2010 19:54:40
Message-Id: 20100425195432.A055B2C04C@corvid.gentoo.org
1 caster 10/04/25 19:54:32
2
3 Modified: ChangeLog
4 Added: taskcoach-1.0.3.ebuild
5 Log:
6 Version bump. Adds optional libnotify support via USE flag. Restrict python dependency to 2.x and support multiple python ABI's - bug #311687.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.46 app-office/taskcoach/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.46&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.46&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/ChangeLog?r1=1.45&r2=1.46
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v
19 retrieving revision 1.45
20 retrieving revision 1.46
21 diff -u -r1.45 -r1.46
22 --- ChangeLog 11 Apr 2010 23:03:08 -0000 1.45
23 +++ ChangeLog 25 Apr 2010 19:54:32 -0000 1.46
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-office/taskcoach
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.45 2010/04/11 23:03:08 caster Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.46 2010/04/25 19:54:32 caster Exp $
29 +
30 +*taskcoach-1.0.3 (25 Apr 2010)
31 +
32 + 25 Apr 2010; Vlastimil Babka <caster@g.o> +taskcoach-1.0.3.ebuild:
33 + Version bump. Adds optional libnotify support via USE flag. Restrict
34 + python dependency to 2.x and support multiple python ABI's - bug #311687.
35
36 *taskcoach-1.0.2 (11 Apr 2010)
37
38
39
40
41 1.1 app-office/taskcoach/taskcoach-1.0.3.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/taskcoach-1.0.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/taskcoach/taskcoach-1.0.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: taskcoach-1.0.3.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.0.3.ebuild,v 1.1 2010/04/25 19:54:32 caster Exp $
51
52 EAPI=3
53
54 PYTHON_DEPEND="2"
55 SUPPORT_PYTHON_ABIS="1"
56 RESTRICT_PYTHON_ABIS="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 }
101
102 pkg_postinst() {
103 elog "With version 1.0, taskcoach could be stabilized if there is enough user interest."
104 elog "If you run a stable stable system and had to keyword taskcoach, please comment/vote"
105 elog "on http://bugs.gentoo.org/show_bug.cgi?id=311841"
106 }