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 16D5F58974 for ; Fri, 22 Jan 2016 08:47:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D754321C003; Fri, 22 Jan 2016 08:47:16 +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 6134121C003 for ; Fri, 22 Jan 2016 08:47:16 +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 9060934082B for ; Fri, 22 Jan 2016 08:47:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0094D1067 for ; Fri, 22 Jan 2016 08:47:13 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1453452425.d8e476c2a80c4eb206a4149000a87c34f9d9d11c.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/unidecode/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/unidecode/Manifest dev-python/unidecode/unidecode-0.04.19.ebuild X-VCS-Directories: dev-python/unidecode/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: d8e476c2a80c4eb206a4149000a87c34f9d9d11c X-VCS-Branch: master Date: Fri, 22 Jan 2016 08:47:13 +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: 49586ddb-b8b1-46ab-a08a-2b0be870d2cb X-Archives-Hash: 3d2c8ff4d1518be4e47095f0520b4ea8 commit: d8e476c2a80c4eb206a4149000a87c34f9d9d11c Author: Justin Lecher gentoo org> AuthorDate: Fri Jan 22 08:47:05 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri Jan 22 08:47:05 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8e476c2 dev-python/unidecode: Version Bump Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> dev-python/unidecode/Manifest | 1 + dev-python/unidecode/unidecode-0.04.19.ebuild | 28 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-python/unidecode/Manifest b/dev-python/unidecode/Manifest index 219eef6..53eecfc 100644 --- a/dev-python/unidecode/Manifest +++ b/dev-python/unidecode/Manifest @@ -1 +1,2 @@ DIST Unidecode-0.04.18.tar.gz 206191 SHA256 f19150c74de2fe6847b13efeeaee402f2bd2c309a446346a8b5baae0315d108a SHA512 4434b147662c605829a599cb227b10599e70b9a40669b6bce490156c6679d22b49e1768667e10851eaf8d6a142a2c22df4800f0382ed74e781c247708021acd7 WHIRLPOOL 84f07583ba19f6c029128699629dc5709343520b94ea0fd3c8924d7e44910481f5b1574449eb78c2fa4dd884de4fa8b646593623dcae28b809f423c343163aa1 +DIST Unidecode-0.04.19.tar.gz 204613 SHA256 51477646a9169469e37e791b13ae65fcc75b7f7f570d0d3e514d077805c02e1e SHA512 a7be95ab22dcc61925da5abb2288cf947e96c61926cd384222451f65947be13d3f5d28bcc4e06f636bebc3dfae01716d455036e15ddb3199f52ca542997f74a1 WHIRLPOOL 14b8f0cfdb42ad10f5aa91f586a9880054f55cbc9d4bff64e62593b57c2265d77131f32ba5f8ebc11c594c79a1c1d8a109fddd2ce6e777e9974d947759ccaeb4 diff --git a/dev-python/unidecode/unidecode-0.04.19.ebuild b/dev-python/unidecode/unidecode-0.04.19.ebuild new file mode 100644 index 0000000..f4deb31 --- /dev/null +++ b/dev-python/unidecode/unidecode-0.04.19.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy ) + +MY_PN=Unidecode +MY_P=${MY_PN}-${PV} + +inherit distutils-r1 + +DESCRIPTION="Module providing ASCII transliterations of Unicode text" +HOMEPAGE="https://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 ~ppc ~ppc64 ~sparc ~x86" + +S=${WORKDIR}/${MY_P} + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + esetup.py test +}