Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/anki: anki-2.0.29.ebuild ChangeLog
Date: Mon, 29 Sep 2014 03:54:28
Message-Id: 20140929035425.1E9E9272@oystercatcher.gentoo.org
1 patrick 14/09/29 03:54:25
2
3 Modified: ChangeLog
4 Added: anki-2.0.29.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.84 app-misc/anki/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.84&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.84&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?r1=1.83&r2=1.84
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v
20 retrieving revision 1.83
21 retrieving revision 1.84
22 diff -u -r1.83 -r1.84
23 --- ChangeLog 14 Aug 2014 16:50:56 -0000 1.83
24 +++ ChangeLog 29 Sep 2014 03:54:25 -0000 1.84
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-misc/anki
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.83 2014/08/14 16:50:56 phajdan.jr Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.84 2014/09/29 03:54:25 patrick Exp $
30 +
31 +*anki-2.0.29 (29 Sep 2014)
32 +
33 + 29 Sep 2014; Patrick Lauer <patrick@g.o> +anki-2.0.29.ebuild:
34 + Bump
35
36 14 Aug 2014; Pawel Hajdan jr <phajdan.jr@g.o> anki-2.0.28.ebuild:
37 x86 stable wrt bug #518844
38
39
40
41 1.1 app-misc/anki/anki-2.0.29.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.29.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.29.ebuild?rev=1.1&content-type=text/plain
45
46 Index: anki-2.0.29.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.29.ebuild,v 1.1 2014/09/29 03:54:25 patrick Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python2_6 python2_7 )
55 PYTHON_REQ_USE="sqlite"
56
57 inherit eutils python-single-r1
58
59 DESCRIPTION="A spaced-repetition memory training program (flash cards)"
60 HOMEPAGE="http://ichi2.net/anki/"
61 SRC_URI="http://ankisrs.net/download/mirror/${P}.tgz"
62
63 LICENSE="GPL-3"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="latex +recording +sound"
67
68 RDEPEND="${PYTHON_DEPS}
69 dev-python/PyQt4[X,svg,webkit]
70 >=dev-python/httplib2-0.7.4
71 dev-python/beautifulsoup:python-2
72 dev-python/send2trash
73 recording? ( media-sound/lame
74 >=dev-python/pyaudio-0.2.4 )
75 sound? ( media-video/mplayer )
76 latex? ( app-text/texlive
77 app-text/dvipng )"
78 DEPEND=""
79
80 pkg_setup(){
81 python-single-r1_pkg_setup
82 }
83
84 src_prepare() {
85 rm -r thirdparty || die
86 sed -i -e "s/updates=True/updates=False/" \
87 aqt/profiles.py || die
88 }
89
90 # Nothing to configure or compile
91 src_configure() {
92 true;
93 }
94
95 src_compile() {
96 true;
97 }
98
99 src_install() {
100 doicon ${PN}.png
101 domenu ${PN}.desktop
102 doman ${PN}.1
103
104 dodoc README README.development
105 python_domodule aqt anki
106 python_doscript anki/anki
107 }
108
109 pkg_preinst() {
110 if has_version "<app-misc/anki-2" ; then
111 elog "Anki 2 is a rewrite of Anki with many new features and"
112 elog "a new database format. On the first run your decks are"
113 elog "converted to the new format and a backup of your Anki-1"
114 elog "decks is created. Please read the following:"
115 elog "http://ankisrs.net/anki2.html"
116 fi
117 }