From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A34A11389E2 for ; Sat, 20 Dec 2014 07:39:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 353E1E0C08; Sat, 20 Dec 2014 07:39:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CB80EE0C08 for ; Sat, 20 Dec 2014 07:39:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 136B4340597 for ; Sat, 20 Dec 2014 07:39:54 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2078) id B5A36CE58; Sat, 20 Dec 2014 07:39:52 +0000 (UTC) From: "Jeroen Roovers (jer)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, jer@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-python/unidecode: ChangeLog unidecode-0.04.17.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog unidecode-0.04.17.ebuild X-VCS-Directories: dev-python/unidecode X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20141220073952.B5A36CE58@oystercatcher.gentoo.org> Date: Sat, 20 Dec 2014 07:39:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3d71f5f3-4985-4e29-8847-ff5ce837b596 X-Archives-Hash: eb7cff3bd96dd518775b31b3c4f8678b jer 14/12/20 07:39:52 Modified: ChangeLog Added: unidecode-0.04.17.ebuild Log: Version bump. (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613) Revision Changes Path 1.23 dev-python/unidecode/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unidecode/ChangeLog?rev=1.23&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unidecode/ChangeLog?rev=1.23&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unidecode/ChangeLog?r1=1.22&r2=1.23 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-python/unidecode/ChangeLog,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- ChangeLog 16 Dec 2014 20:35:47 -0000 1.22 +++ ChangeLog 20 Dec 2014 07:39:52 -0000 1.23 @@ -1,6 +1,11 @@ # ChangeLog for dev-python/unidecode # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/unidecode/ChangeLog,v 1.22 2014/12/16 20:35:47 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/unidecode/ChangeLog,v 1.23 2014/12/20 07:39:52 jer Exp $ + +*unidecode-0.04.17 (20 Dec 2014) + + 20 Dec 2014; Jeroen Roovers +unidecode-0.04.17.ebuild: + Version bump. 16 Dec 2014; Markus Meier unidecode-0.04.16.ebuild: arm stable, bug #530110 1.1 dev-python/unidecode/unidecode-0.04.17.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unidecode/unidecode-0.04.17.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unidecode/unidecode-0.04.17.ebuild?rev=1.1&content-type=text/plain Index: unidecode-0.04.17.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/unidecode/unidecode-0.04.17.ebuild,v 1.1 2014/12/20 07:39:52 jer Exp $ EAPI=5 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} pypy pypy2_0 ) MY_PN=Unidecode MY_P=${MY_PN}-${PV} inherit distutils-r1 DESCRIPTION="Module providing ASCII transliterations of Unicode text" HOMEPAGE="http://pypi.python.org/pypi/Unidecode" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~sparc ~x86" S=${WORKDIR}/${MY_P} DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" python_test() { esetup.py test || die "Tests failed under ${EPYTHON}" }