From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D71571382C5 for ; Sat, 12 May 2018 18:29:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD468E0BA3; Sat, 12 May 2018 18:29:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B67ADE0BA3 for ; Sat, 12 May 2018 18:29:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 88568335C97 for ; Sat, 12 May 2018 18:29:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0FE4287 for ; Sat, 12 May 2018 18:29:14 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1526148732.592a1aa0bc10cc2c4c4bc085db6699ecb783f549.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/inflect/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/inflect/Manifest dev-python/inflect/inflect-0.3.1.ebuild X-VCS-Directories: dev-python/inflect/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 592a1aa0bc10cc2c4c4bc085db6699ecb783f549 X-VCS-Branch: master Date: Sat, 12 May 2018 18:29:14 +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: 06585d3e-70e3-4271-b6f4-efb83470123c X-Archives-Hash: 7a1bedf9eae8300b533473d49713fa12 commit: 592a1aa0bc10cc2c4c4bc085db6699ecb783f549 Author: Louis Sautier gmail com> AuthorDate: Sat May 12 15:22:39 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 12 18:12:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=592a1aa0 dev-python/inflect: bump to 0.3.1 Closes: https://github.com/gentoo/gentoo/pull/8367 Package-Manager: Portage-2.3.31, Repoman-2.3.9 dev-python/inflect/Manifest | 1 + dev-python/inflect/inflect-0.3.1.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-python/inflect/Manifest b/dev-python/inflect/Manifest index ee4ca012663..c481e1861e2 100644 --- a/dev-python/inflect/Manifest +++ b/dev-python/inflect/Manifest @@ -1 +1,2 @@ DIST inflect-0.2.5.tar.gz 109756 BLAKE2B ecb64b0fea04602f112dfba11ade6828eae7a7f3f44d4c4fb15c2300ac18025ea4c51f9c36aae5e7e92bd09e24d08091ce096b888a520fd2d4c40374356333d5 SHA512 68371158ac90d9662c19657cbf697f44ee9ceac090286d53e29ee04252efbb7d0bfbd99ae6847e6eec1991ef4ef670eff60693d1f0a301885bab2a09c7ce4616 +DIST inflect-0.3.1.tar.gz 109456 BLAKE2B b57009a933f49762da315c55950ca20ad04a53559b1bd1fb7d8395bf4bfbb74b618eb1a0d0a0ca0f2b64adde93665fdf1f643f56299820ffe0c56a20f57237dc SHA512 c832f0f36b56f5f59d8c3a7c0b128c0ae00f7a90c57f303e79a2118657ee7b62ed3db7cd4c3297e41a07c4d2bdbc18d6c754c319a43004af6d35cab3701169a6 diff --git a/dev-python/inflect/inflect-0.3.1.ebuild b/dev-python/inflect/inflect-0.3.1.ebuild new file mode 100644 index 00000000000..4f9087fc108 --- /dev/null +++ b/dev-python/inflect/inflect-0.3.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( pypy{,3} python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="Correctly inflect words and numbers" +HOMEPAGE="https://github.com/jazzband/inflect" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] ) +" + +python_test() { + nosetests tests || die "tests failed with ${EPYTHON}" +}