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.3.8.ebuild taskcoach-1.2.30.ebuild taskcoach-1.2.28.ebuild taskcoach-1.2.27.ebuild
Date: Thu, 01 Mar 2012 16:04:56
Message-Id: 20120301160439.CB19E2004B@flycatcher.gentoo.org
1 caster 12/03/01 16:04:39
2
3 Modified: ChangeLog
4 Added: taskcoach-1.3.8.ebuild
5 Removed: taskcoach-1.2.30.ebuild taskcoach-1.2.28.ebuild
6 taskcoach-1.2.27.ebuild
7 Log:
8 Version bump, bug #406389. All edit dialogs make changes immediately, thus no need for OK and Cancel buttons anymore.
9
10 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
11
12 Revision Changes Path
13 1.83 app-office/taskcoach/ChangeLog
14
15 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.83&view=markup
16 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.83&content-type=text/plain
17 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?r1=1.82&r2=1.83
18
19 Index: ChangeLog
20 ===================================================================
21 RCS file: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v
22 retrieving revision 1.82
23 retrieving revision 1.83
24 diff -u -r1.82 -r1.83
25 --- ChangeLog 7 Dec 2011 07:37:53 -0000 1.82
26 +++ ChangeLog 1 Mar 2012 16:04:39 -0000 1.83
27 @@ -1,6 +1,14 @@
28 # ChangeLog for app-office/taskcoach
29 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 -# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.82 2011/12/07 07:37:53 phajdan.jr Exp $
31 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
32 +# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.83 2012/03/01 16:04:39 caster Exp $
33 +
34 +*taskcoach-1.3.8 (01 Mar 2012)
35 +
36 + 01 Mar 2012; Vlastimil Babka <caster@g.o> -files/3081666.patch,
37 + -taskcoach-1.2.27.ebuild, -taskcoach-1.2.28.ebuild, -taskcoach-1.2.30.ebuild,
38 + +taskcoach-1.3.8.ebuild:
39 + Version bump, bug #406389. All edit dialogs make changes immediately, thus no
40 + need for OK and Cancel buttons anymore.
41
42 07 Dec 2011; Pawel Hajdan jr <phajdan.jr@g.o> taskcoach-1.2.31.ebuild:
43 x86 stable wrt bug #392605
44
45
46
47 1.1 app-office/taskcoach/taskcoach-1.3.8.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/taskcoach-1.3.8.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/taskcoach-1.3.8.ebuild?rev=1.1&content-type=text/plain
51
52 Index: taskcoach-1.3.8.ebuild
53 ===================================================================
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/taskcoach-1.3.8.ebuild,v 1.1 2012/03/01 16:04:39 caster Exp $
57
58 EAPI=3
59
60 PYTHON_DEPEND="2"
61 SUPPORT_PYTHON_ABIS="1"
62 RESTRICT_PYTHON_ABIS="2.4 2.5 3.*"
63 PYTHON_MODNAME="buildlib taskcoachlib"
64
65 inherit distutils eutils
66
67 MY_PN="TaskCoach"
68 MY_P="${MY_PN}-${PV}"
69
70 DESCRIPTION="Simple personal tasks and todo lists manager"
71 HOMEPAGE="http://www.taskcoach.org http://pypi.python.org/pypi/TaskCoach"
72 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
73 LICENSE="GPL-3"
74 SLOT="0"
75 KEYWORDS="~amd64 ~x86"
76 IUSE="libnotify"
77 DEPEND=">=dev-python/wxpython-2.8.9.2:2.8"
78 RDEPEND="${DEPEND}
79 libnotify? ( dev-python/notify-python )"
80
81 S="${WORKDIR}/${MY_P}"
82
83 DOCS="CHANGES.txt"
84
85 src_install() {
86 distutils_src_install
87
88 # a bit ugly but...
89 mv "${D}/usr/bin/taskcoach.py" "${D}/usr/bin/taskcoach" || die
90 for file in "${D}"/usr/bin/taskcoach.py-*; do
91 dir=$(dirname ${file})
92 ver=$(basename ${file})
93 ver=${ver#taskcoach.py-}
94 mv "${file}" "${dir}/taskcoach-${ver}" || die
95 done
96
97 doicon "icons.in/${PN}.png" || die
98 make_desktop_entry ${PN} "Task Coach" ${PN} Office || die
99 }