* [gentoo-commits] gentoo-x86 commit in dev-python/whoosh: whoosh-2.5.7.ebuild ChangeLog
@ 2014-03-26 18:32 Anthony G. Basile (blueness)
0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile (blueness) @ 2014-03-26 18:32 UTC (permalink / raw
To: gentoo-commits
blueness 14/03/26 18:32:09
Modified: ChangeLog
Added: whoosh-2.5.7.ebuild
Log:
Version bump, bug #505830
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
Revision Changes Path
1.18 dev-python/whoosh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?r1=1.17&r2=1.18
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog 23 Sep 2013 02:53:04 -0000 1.17
+++ ChangeLog 26 Mar 2014 18:32:09 -0000 1.18
@@ -1,6 +1,11 @@
# ChangeLog for dev-python/whoosh
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v 1.17 2013/09/23 02:53:04 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v 1.18 2014/03/26 18:32:09 blueness Exp $
+
+*whoosh-2.5.7 (26 Mar 2014)
+
+ 26 Mar 2014; Anthony G. Basile <blueness@gentoo.org> +whoosh-2.5.7.ebuild:
+ Version bump, bug #505830
*whoosh-2.5.4 (23 Sep 2013)
1.1 dev-python/whoosh/whoosh-2.5.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild?rev=1.1&content-type=text/plain
Index: whoosh-2.5.7.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild,v 1.1 2014/03/26 18:32:09 blueness Exp $
EAPI="5"
PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
MY_PN="Whoosh"
inherit distutils-r1
DESCRIPTION="Fast, pure-Python full text indexing, search and spell checking library"
HOMEPAGE="http://bitbucket.org/mchaput/whoosh/wiki/Home/ http://pypi.python.org/pypi/Whoosh/"
SRC_URI="mirror://pypi/W/${MY_PN}/${MY_PN}-${PV}.tar.gz"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc test"
S="${WORKDIR}/${MY_PN}-${PV}"
python_prepare_all() {
# (backport from upstream)
sed -i -e '/cmdclass/s:pytest:PyTest:' setup.py || die
distutils-r1_python_prepare_all
}
python_install_all() {
local DOCS=( README.txt )
use doc && local HTML_DOCS=( docs/build/html/_sources/. )
distutils-r1_python_install_all
}
python_test() {
esetup.py test
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/whoosh: whoosh-2.5.7.ebuild ChangeLog
@ 2014-07-27 1:23 Ian Delaney (idella4)
0 siblings, 0 replies; 3+ messages in thread
From: Ian Delaney (idella4) @ 2014-07-27 1:23 UTC (permalink / raw
To: gentoo-commits
idella4 14/07/27 01:23:42
Modified: whoosh-2.5.7.ebuild ChangeLog
Log:
drop py2.6 pypy2_0 add py3.4
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.3 dev-python/whoosh/whoosh-2.5.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild?r1=1.2&r2=1.3
Index: whoosh-2.5.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- whoosh-2.5.7.ebuild 31 Mar 2014 20:47:43 -0000 1.2
+++ whoosh-2.5.7.ebuild 27 Jul 2014 01:23:42 -0000 1.3
@@ -1,10 +1,10 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild,v 1.2 2014/03/31 20:47:43 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild,v 1.3 2014/07/27 01:23:42 idella4 Exp $
EAPI="5"
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
MY_PN="Whoosh"
1.20 dev-python/whoosh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?r1=1.19&r2=1.20
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog 31 Mar 2014 20:47:43 -0000 1.19
+++ ChangeLog 27 Jul 2014 01:23:42 -0000 1.20
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/whoosh
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v 1.19 2014/03/31 20:47:43 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v 1.20 2014/07/27 01:23:42 idella4 Exp $
+
+ 27 Jul 2014; Ian Delaney <idella4@gentoo.org> whoosh-2.5.7.ebuild:
+ drop py2.6 pypy2_0 add py3.4
31 Mar 2014; Michał Górny <mgorny@gentoo.org> whoosh-2.5.3.ebuild,
whoosh-2.5.4.ebuild, whoosh-2.5.7.ebuild:
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-python/whoosh: whoosh-2.5.7.ebuild ChangeLog
@ 2014-11-27 11:48 Ian Delaney (idella4)
0 siblings, 0 replies; 3+ messages in thread
From: Ian Delaney (idella4) @ 2014-11-27 11:48 UTC (permalink / raw
To: gentoo-commits
idella4 14/11/27 11:48:16
Modified: whoosh-2.5.7.ebuild ChangeLog
Log:
clean old python impl
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Revision Changes Path
1.4 dev-python/whoosh/whoosh-2.5.7.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild?r1=1.3&r2=1.4
Index: whoosh-2.5.7.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- whoosh-2.5.7.ebuild 27 Jul 2014 01:23:42 -0000 1.3
+++ whoosh-2.5.7.ebuild 27 Nov 2014 11:48:16 -0000 1.4
@@ -1,10 +1,10 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild,v 1.3 2014/07/27 01:23:42 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/whoosh-2.5.7.ebuild,v 1.4 2014/11/27 11:48:16 idella4 Exp $
EAPI="5"
-PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy )
+PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
MY_PN="Whoosh"
1.23 dev-python/whoosh/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/whoosh/ChangeLog?r1=1.22&r2=1.23
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog 14 Nov 2014 04:13:19 -0000 1.22
+++ ChangeLog 27 Nov 2014 11:48:16 -0000 1.23
@@ -1,6 +1,9 @@
# ChangeLog for dev-python/whoosh
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v 1.22 2014/11/14 04:13:19 idella4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/whoosh/ChangeLog,v 1.23 2014/11/27 11:48:16 idella4 Exp $
+
+ 27 Nov 2014; Ian Delaney <idella4@gentoo.org> whoosh-2.5.7.ebuild:
+ clean old python impl
14 Nov 2014; Ian Delaney <idella4@gentoo.org> -whoosh-2.5.3.ebuild,
-whoosh-2.5.4.ebuild, whoosh-2.6.0.ebuild:
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-11-27 11:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-27 11:48 [gentoo-commits] gentoo-x86 commit in dev-python/whoosh: whoosh-2.5.7.ebuild ChangeLog Ian Delaney (idella4)
-- strict thread matches above, loose matches on Subject: below --
2014-07-27 1:23 Ian Delaney (idella4)
2014-03-26 18:32 Anthony G. Basile (blueness)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox