public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-python/python-levenshtein: python-levenshtein-0.11.2.ebuild ChangeLog
@ 2014-02-08  6:43 Patrick Lauer (patrick)
  0 siblings, 0 replies; 6+ messages in thread
From: Patrick Lauer (patrick) @ 2014-02-08  6:43 UTC (permalink / raw
  To: gentoo-commits

patrick     14/02/08 06:43:11

  Modified:             ChangeLog
  Added:                python-levenshtein-0.11.2.ebuild
  Log:
  Bump
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.20                 dev-python/python-levenshtein/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	3 Dec 2013 06:20:59 -0000	1.19
+++ ChangeLog	8 Feb 2014 06:43:11 -0000	1.20
@@ -1,6 +1,12 @@
 # ChangeLog for dev-python/python-levenshtein
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.19 2013/12/03 06:20:59 patrick Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.20 2014/02/08 06:43:11 patrick Exp $
+
+*python-levenshtein-0.11.2 (08 Feb 2014)
+
+  08 Feb 2014; Patrick Lauer <patrick@gentoo.org>
+  +python-levenshtein-0.11.2.ebuild:
+  Bump
 
 *python-levenshtein-0.11.1 (03 Dec 2013)
 



1.1                  dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.1&content-type=text/plain

Index: python-levenshtein-0.11.2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.1 2014/02/08 06:43:11 patrick Exp $

EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 )

inherit distutils-r1

MY_PN="python-Levenshtein"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Functions for fast computation of Levenshtein (edit) distance, and edit operations"
HOMEPAGE="http://github.com/miohtama/python-Levenshtein/tree/
	http://pypi.python.org/pypi/python-Levenshtein/"
SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ia64 ~x86"
IUSE="doc"

DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND=""

S="${WORKDIR}/${MY_P}"

python_compile_all() {
	if use doc; then
		einfo "Generation of documentation"
		"${PYTHON}" "${FILESDIR}/genextdoc.py" Levenshtein || die "Generation of documentation failed"
	fi
}

python_install_all() {
	use doc && local HTML_DOCS=( Levenshtein.html )
	distutils-r1_python_install_all
}





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-levenshtein: python-levenshtein-0.11.2.ebuild ChangeLog
@ 2014-03-30  7:54 Ian Delaney (idella4)
  0 siblings, 0 replies; 6+ messages in thread
From: Ian Delaney (idella4) @ 2014-03-30  7:54 UTC (permalink / raw
  To: gentoo-commits

idella4     14/03/30 07:54:24

  Modified:             python-levenshtein-0.11.2.ebuild ChangeLog
  Log:
  Add py3 support (except for doc build), fixes Bug #493998
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)

Revision  Changes    Path
1.2                  dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?r1=1.1&r2=1.2

Index: python-levenshtein-0.11.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- python-levenshtein-0.11.2.ebuild	8 Feb 2014 06:43:11 -0000	1.1
+++ python-levenshtein-0.11.2.ebuild	30 Mar 2014 07:54:24 -0000	1.2
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.1 2014/02/08 06:43:11 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.2 2014/03/30 07:54:24 idella4 Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7} pypy2_0 )
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 )
 
 inherit distutils-r1
 
@@ -27,8 +27,13 @@
 
 python_compile_all() {
 	if use doc; then
-		einfo "Generation of documentation"
-		"${PYTHON}" "${FILESDIR}/genextdoc.py" Levenshtein || die "Generation of documentation failed"
+		# Cannot assume user has a system py2 or pypy
+		if python_is_python3; then
+			die "The build of Levenshtein.html is not supported by python3"
+		else
+			einfo "Generation of documentation"
+			"${PYTHON}" "${FILESDIR}/genextdoc.py" Levenshtein || die "Generation of documentation failed"
+		fi
 	fi
 }
 



1.21                 dev-python/python-levenshtein/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.21&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.21&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog	8 Feb 2014 06:43:11 -0000	1.20
+++ ChangeLog	30 Mar 2014 07:54:24 -0000	1.21
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-levenshtein
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.20 2014/02/08 06:43:11 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.21 2014/03/30 07:54:24 idella4 Exp $
+
+  30 Mar 2014; Ian Delaney <idella4@gentoo.org>
+  python-levenshtein-0.11.2.ebuild:
+  Add py3 support (except for doc build), fixes Bug #493998
 
 *python-levenshtein-0.11.2 (08 Feb 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-levenshtein: python-levenshtein-0.11.2.ebuild ChangeLog
@ 2014-11-25 10:51 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2014-11-25 10:51 UTC (permalink / raw
  To: gentoo-commits

pacho       14/11/25 10:51:56

  Modified:             python-levenshtein-0.11.2.ebuild ChangeLog
  Log:
  Support python 3.4
  
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.4                  dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?r1=1.3&r2=1.4

Index: python-levenshtein-0.11.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- python-levenshtein-0.11.2.ebuild	31 Mar 2014 20:46:52 -0000	1.3
+++ python-levenshtein-0.11.2.ebuild	25 Nov 2014 10:51:56 -0000	1.4
@@ -1,9 +1,9 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.3 2014/03/31 20:46:52 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.4 2014/11/25 10:51:56 pacho Exp $
 
 EAPI=5
-PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy pypy2_0 )
+PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_0 )
 
 inherit distutils-r1
 



1.23                 dev-python/python-levenshtein/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	31 Mar 2014 20:46:52 -0000	1.22
+++ ChangeLog	25 Nov 2014 10:51:56 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/python-levenshtein
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.22 2014/03/31 20:46:52 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.23 2014/11/25 10:51:56 pacho Exp $
+
+  25 Nov 2014; Pacho Ramos <pacho@gentoo.org> python-levenshtein-0.11.2.ebuild:
+  Support python 3.4
 
   31 Mar 2014; Michał Górny <mgorny@gentoo.org>
   python-levenshtein-0.10.2-r1.ebuild, python-levenshtein-0.11.1.ebuild,





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-levenshtein: python-levenshtein-0.11.2.ebuild ChangeLog
@ 2015-03-06 22:34 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-06 22:34 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/06 22:34:55

  Modified:             python-levenshtein-0.11.2.ebuild ChangeLog
  Log:
  amd64 stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.5                  dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?r1=1.4&r2=1.5

Index: python-levenshtein-0.11.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- python-levenshtein-0.11.2.ebuild	25 Nov 2014 10:51:56 -0000	1.4
+++ python-levenshtein-0.11.2.ebuild	6 Mar 2015 22:34:55 -0000	1.5
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.4 2014/11/25 10:51:56 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.5 2015/03/06 22:34:55 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_0 )
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 ~x86"
 IUSE="doc"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.25                 dev-python/python-levenshtein/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?r1=1.24&r2=1.25

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog	18 Dec 2014 05:48:08 -0000	1.24
+++ ChangeLog	6 Mar 2015 22:34:55 -0000	1.25
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/python-levenshtein
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.24 2014/12/18 05:48:08 patrick Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.25 2015/03/06 22:34:55 pacho Exp $
+
+  06 Mar 2015; Pacho Ramos <pacho@gentoo.org> python-levenshtein-0.11.2.ebuild:
+  amd64 stable, bug 540290
 
 *python-levenshtein-0.12.0 (18 Dec 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-levenshtein: python-levenshtein-0.11.2.ebuild ChangeLog
@ 2015-03-08 23:57 Pacho Ramos (pacho)
  0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos (pacho) @ 2015-03-08 23:57 UTC (permalink / raw
  To: gentoo-commits

pacho       15/03/08 23:57:19

  Modified:             python-levenshtein-0.11.2.ebuild ChangeLog
  Log:
  x86 stable, bug 540290
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --include-arches="x86", signed Manifest commit with key A188FBD4)

Revision  Changes    Path
1.6                  dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?r1=1.5&r2=1.6

Index: python-levenshtein-0.11.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- python-levenshtein-0.11.2.ebuild	6 Mar 2015 22:34:55 -0000	1.5
+++ python-levenshtein-0.11.2.ebuild	8 Mar 2015 23:57:19 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.5 2015/03/06 22:34:55 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.6 2015/03/08 23:57:19 pacho Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3,3_4} pypy pypy2_0 )
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 x86"
 IUSE="doc"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.26                 dev-python/python-levenshtein/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.26&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.26&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?r1=1.25&r2=1.26

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	6 Mar 2015 22:34:55 -0000	1.25
+++ ChangeLog	8 Mar 2015 23:57:19 -0000	1.26
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/python-levenshtein
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.25 2015/03/06 22:34:55 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.26 2015/03/08 23:57:19 pacho Exp $
+
+  08 Mar 2015; Pacho Ramos <pacho@gentoo.org> python-levenshtein-0.11.2.ebuild:
+  x86 stable, bug 540290
 
   06 Mar 2015; Pacho Ramos <pacho@gentoo.org> python-levenshtein-0.11.2.ebuild:
   amd64 stable, bug 540290





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

* [gentoo-commits] gentoo-x86 commit in dev-python/python-levenshtein: python-levenshtein-0.11.2.ebuild ChangeLog
@ 2015-04-14 12:51 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2015-04-14 12:51 UTC (permalink / raw
  To: gentoo-commits

ago         15/04/14 12:51:05

  Modified:             python-levenshtein-0.11.2.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #540290
  
  (Portage version: 2.2.14/cvs/Linux x86_64, RepoMan options: --include-arches="ia64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild?r1=1.7&r2=1.8

Index: python-levenshtein-0.11.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- python-levenshtein-0.11.2.ebuild	8 Apr 2015 08:04:58 -0000	1.7
+++ python-levenshtein-0.11.2.ebuild	14 Apr 2015 12:51:05 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.7 2015/04/08 08:04:58 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/python-levenshtein-0.11.2.ebuild,v 1.8 2015/04/14 12:51:05 ago Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
@@ -17,7 +17,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ia64 x86"
+KEYWORDS="amd64 ia64 x86"
 IUSE="doc"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



1.28                 dev-python/python-levenshtein/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/python-levenshtein/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	8 Apr 2015 08:04:58 -0000	1.27
+++ ChangeLog	14 Apr 2015 12:51:05 -0000	1.28
@@ -1,6 +1,10 @@
 # ChangeLog for dev-python/python-levenshtein
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.27 2015/04/08 08:04:58 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/python-levenshtein/ChangeLog,v 1.28 2015/04/14 12:51:05 ago Exp $
+
+  14 Apr 2015; Agostino Sarubbo <ago@gentoo.org>
+  python-levenshtein-0.11.2.ebuild:
+  Stable for ia64, wrt bug #540290
 
   08 Apr 2015; Michał Górny <mgorny@gentoo.org>
   python-levenshtein-0.10.2-r1.ebuild, python-levenshtein-0.11.1.ebuild,





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

end of thread, other threads:[~2015-04-14 12:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-25 10:51 [gentoo-commits] gentoo-x86 commit in dev-python/python-levenshtein: python-levenshtein-0.11.2.ebuild ChangeLog Pacho Ramos (pacho)
  -- strict thread matches above, loose matches on Subject: below --
2015-04-14 12:51 Agostino Sarubbo (ago)
2015-03-08 23:57 Pacho Ramos (pacho)
2015-03-06 22:34 Pacho Ramos (pacho)
2014-03-30  7:54 Ian Delaney (idella4)
2014-02-08  6:43 Patrick Lauer (patrick)

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