public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-misc/anki: anki-2.0.12.ebuild ChangeLog
@ 2013-07-25 13:00 Thomas Kahle (tomka)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Kahle (tomka) @ 2013-07-25 13:00 UTC (permalink / raw
  To: gentoo-commits

tomka       13/07/25 13:00:59

  Modified:             ChangeLog
  Added:                anki-2.0.12.ebuild
  Log:
  bump to 2.0.12, suppress update warnings (bug 478128)
  
  (Portage version: 2.1.12.13/cvs/Linux x86_64, signed Manifest commit with key 0x89DEB219565C32BC!)

Revision  Changes    Path
1.61                 app-misc/anki/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.61&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.61&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog	24 Jun 2013 19:27:31 -0000	1.60
+++ ChangeLog	25 Jul 2013 13:00:59 -0000	1.61
@@ -1,6 +1,11 @@
 # ChangeLog for app-misc/anki
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.60 2013/06/24 19:27:31 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.61 2013/07/25 13:00:59 tomka Exp $
+
+*anki-2.0.12 (25 Jul 2013)
+
+  25 Jul 2013; Thomas Kahle <tomka@gentoo.org> +anki-2.0.12.ebuild:
+  bump to 2.0.12, suppress update warnings (bug 478128)
 
 *anki-2.0.11-r1 (24 Jun 2013)
 



1.1                  app-misc/anki/anki-2.0.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?rev=1.1&content-type=text/plain

Index: anki-2.0.12.ebuild
===================================================================
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild,v 1.1 2013/07/25 13:00:59 tomka Exp $

EAPI=5

PYTHON_COMPAT=( python2_6 python2_7 )
PYTHON_REQ_USE="sqlite"

inherit eutils python-single-r1

DESCRIPTION="A spaced-repetition memory training program (flash cards)"
HOMEPAGE="http://ichi2.net/anki/"
SRC_URI="http://ankisrs.net/download/mirror/${P}.tgz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="latex +recording +sound"

RDEPEND="${PYTHON_DEPS}
	 dev-python/PyQt4[X,svg,webkit]
	 >=dev-python/httplib2-0.7.4
	 dev-python/beautifulsoup:python-2
	 dev-python/send2trash
	 recording? ( media-sound/lame
				  >=dev-python/pyaudio-0.2.4 )
	 sound? ( media-video/mplayer )
	 latex? ( app-text/texlive
			  app-text/dvipng )"
DEPEND=""

pkg_setup(){
	python-single-r1_pkg_setup
}

src_prepare() {
	rm -r thirdparty || die
	sed -i -e /suppressUpdate=False/suppressUpdate=True/ \
		aqt/profiles.py
}

# Nothing to configure or compile
src_configure() {
	true;
}

src_compile() {
	true;
}

src_install() {
	doicon ${PN}.png
	domenu ${PN}.desktop
	doman ${PN}.1

	dodoc README README.development
	python_domodule aqt anki
	python_doscript anki/anki
}

pkg_preinst() {
	if has_version "<app-misc/anki-2" ; then
		elog "Anki 2 is a rewrite of Anki with many new features and"
		elog "a new database format.  On the first run your decks are"
		elog "converted to the new format and a backup of your Anki-1"
		elog "decks is created.  Please read the following:"
		elog "http://ankisrs.net/anki2.html"
	fi
}





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/anki: anki-2.0.12.ebuild ChangeLog
@ 2013-07-25 13:04 Thomas Kahle (tomka)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Kahle (tomka) @ 2013-07-25 13:04 UTC (permalink / raw
  To: gentoo-commits

tomka       13/07/25 13:04:15

  Modified:             anki-2.0.12.ebuild ChangeLog
  Log:
  Fix sed bogus from previous commit
  
  (Portage version: 2.1.12.13/cvs/Linux x86_64, signed Manifest commit with key 0x89DEB219565C32BC!)

Revision  Changes    Path
1.2                  app-misc/anki/anki-2.0.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?r1=1.1&r2=1.2

Index: anki-2.0.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- anki-2.0.12.ebuild	25 Jul 2013 13:00:59 -0000	1.1
+++ anki-2.0.12.ebuild	25 Jul 2013 13:04:15 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild,v 1.1 2013/07/25 13:00:59 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild,v 1.2 2013/07/25 13:04:15 tomka Exp $
 
 EAPI=5
 
@@ -36,7 +36,7 @@
 
 src_prepare() {
 	rm -r thirdparty || die
-	sed -i -e /suppressUpdate=False/suppressUpdate=True/ \
+	sed -i -e "s/suppressUpdate=False/suppressUpdate=True/" \
 		aqt/profiles.py
 }
 



1.62                 app-misc/anki/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	25 Jul 2013 13:00:59 -0000	1.61
+++ ChangeLog	25 Jul 2013 13:04:15 -0000	1.62
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/anki
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.61 2013/07/25 13:00:59 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.62 2013/07/25 13:04:15 tomka Exp $
+
+  25 Jul 2013; Thomas Kahle <tomka@gentoo.org> anki-2.0.12.ebuild:
+  Fix sed bogus from previous commit
 
 *anki-2.0.12 (25 Jul 2013)
 





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/anki: anki-2.0.12.ebuild ChangeLog
@ 2013-08-13  9:32 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-13  9:32 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/13 09:32:32

  Modified:             anki-2.0.12.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #480510
  
  (Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  app-misc/anki/anki-2.0.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?r1=1.2&r2=1.3

Index: anki-2.0.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- anki-2.0.12.ebuild	25 Jul 2013 13:04:15 -0000	1.2
+++ anki-2.0.12.ebuild	13 Aug 2013 09:32:32 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild,v 1.2 2013/07/25 13:04:15 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild,v 1.3 2013/08/13 09:32:32 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="latex +recording +sound"
 
 RDEPEND="${PYTHON_DEPS}



1.63                 app-misc/anki/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.63&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.63&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?r1=1.62&r2=1.63

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- ChangeLog	25 Jul 2013 13:04:15 -0000	1.62
+++ ChangeLog	13 Aug 2013 09:32:32 -0000	1.63
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/anki
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.62 2013/07/25 13:04:15 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.63 2013/08/13 09:32:32 ago Exp $
+
+  13 Aug 2013; Agostino Sarubbo <ago@gentoo.org> anki-2.0.12.ebuild:
+  Stable for amd64, wrt bug #480510
 
   25 Jul 2013; Thomas Kahle <tomka@gentoo.org> anki-2.0.12.ebuild:
   Fix sed bogus from previous commit





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-misc/anki: anki-2.0.12.ebuild ChangeLog
@ 2013-08-18 13:47 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2013-08-18 13:47 UTC (permalink / raw
  To: gentoo-commits

ago         13/08/18 13:47:06

  Modified:             anki-2.0.12.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #480510
  
  (Portage version: 2.1.13.7/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.4                  app-misc/anki/anki-2.0.12.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild?r1=1.3&r2=1.4

Index: anki-2.0.12.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- anki-2.0.12.ebuild	13 Aug 2013 09:32:32 -0000	1.3
+++ anki-2.0.12.ebuild	18 Aug 2013 13:47:06 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild,v 1.3 2013/08/13 09:32:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.12.ebuild,v 1.4 2013/08/18 13:47:06 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="latex +recording +sound"
 
 RDEPEND="${PYTHON_DEPS}



1.64                 app-misc/anki/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.64&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?rev=1.64&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/anki/ChangeLog?r1=1.63&r2=1.64

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	13 Aug 2013 09:32:32 -0000	1.63
+++ ChangeLog	18 Aug 2013 13:47:06 -0000	1.64
@@ -1,6 +1,9 @@
 # ChangeLog for app-misc/anki
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.63 2013/08/13 09:32:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/ChangeLog,v 1.64 2013/08/18 13:47:06 ago Exp $
+
+  18 Aug 2013; Agostino Sarubbo <ago@gentoo.org> anki-2.0.12.ebuild:
+  Stable for x86, wrt bug #480510
 
   13 Aug 2013; Agostino Sarubbo <ago@gentoo.org> anki-2.0.12.ebuild:
   Stable for amd64, wrt bug #480510





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-08-18 13:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-18 13:47 [gentoo-commits] gentoo-x86 commit in app-misc/anki: anki-2.0.12.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2013-08-13  9:32 Agostino Sarubbo (ago)
2013-07-25 13:04 Thomas Kahle (tomka)
2013-07-25 13:00 Thomas Kahle (tomka)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox