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.40.ebuild
Date: Fri, 30 May 2014 22:24:38
Message-Id: 20140530222435.38BA52004E@flycatcher.gentoo.org
1 caster 14/05/30 22:24:35
2
3 Modified: ChangeLog
4 Added: taskcoach-1.3.40.ebuild
5 Log:
6 Version bump. Stopped renaming upstream executable taskcoach.py to taskcoach, as it was fragile. Fixes bug #488416.
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4E61DE84)
9
10 Revision Changes Path
11 1.93 app-office/taskcoach/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.93&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?rev=1.93&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/ChangeLog?r1=1.92&r2=1.93
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v
20 retrieving revision 1.92
21 retrieving revision 1.93
22 diff -u -r1.92 -r1.93
23 --- ChangeLog 9 Sep 2013 17:54:05 -0000 1.92
24 +++ ChangeLog 30 May 2014 22:24:35 -0000 1.93
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-office/taskcoach
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.92 2013/09/09 17:54:05 ago Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/ChangeLog,v 1.93 2014/05/30 22:24:35 caster Exp $
31 +
32 +*taskcoach-1.3.40 (30 May 2014)
33 +
34 + 30 May 2014; Vlastimil Babka <caster@g.o> +taskcoach-1.3.40.ebuild:
35 + Version bump. Stopped renaming upstream executable taskcoach.py to taskcoach,
36 + as it was fragile. Fixes bug #488416.
37
38 *taskcoach-1.3.32-r1 (09 Sep 2013)
39
40
41
42
43 1.1 app-office/taskcoach/taskcoach-1.3.40.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/taskcoach-1.3.40.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/taskcoach/taskcoach-1.3.40.ebuild?rev=1.1&content-type=text/plain
47
48 Index: taskcoach-1.3.40.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-office/taskcoach/taskcoach-1.3.40.ebuild,v 1.1 2014/05/30 22:24:35 caster Exp $
53
54 EAPI=5
55
56 PYTHON_COMPAT=( python{2_6,2_7} )
57
58 inherit distutils-r1 eutils versionator
59
60 MY_PN="TaskCoach"
61 MY_P="${MY_PN}-${PV}"
62
63 DESCRIPTION="Simple personal tasks and todo lists manager"
64 HOMEPAGE="http://www.taskcoach.org http://pypi.python.org/pypi/TaskCoach"
65 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
66 LICENSE="GPL-3"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="libnotify"
70 DEPEND=">=dev-python/wxpython-2.8.9.2:2.8[${PYTHON_USEDEP}]
71 >=dev-python/twisted-core-10.0"
72 RDEPEND="${DEPEND}
73 libnotify? ( dev-python/notify-python[${PYTHON_USEDEP}] )"
74
75 S="${WORKDIR}/${MY_P}"
76
77 DOCS=( CHANGES.txt README.txt )
78
79 python_install_all() {
80 distutils-r1_python_install_all
81
82 doicon "icons.in/${PN}.png"
83 make_desktop_entry ${PN}.py "Task Coach" ${PN} Office
84 }
85
86 pkg_postinst() {
87 if [[ -n ${REPLACING_VERSIONS} ]]; then
88 if ! version_is_at_least 1.3.40 ${REPLACING_VERSIONS}; then
89 elog "Since version 1.3.40, the Task Coach executable is called ${PN}.py"
90 fi
91 fi
92 }