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 2C7FE139694 for ; Sat, 15 Apr 2017 22:32:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0938E0839; Sat, 15 Apr 2017 22:32:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BD9CDE0839 for ; Sat, 15 Apr 2017 22:32:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 59B5133FE7D for ; Sat, 15 Apr 2017 22:32:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7B1BA742C for ; Sat, 15 Apr 2017 22:32:07 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1492295503.d2980907cd901011996ee7aa876c2dbab0092723.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/texttable/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/texttable/Manifest dev-python/texttable/texttable-0.8.8.ebuild X-VCS-Directories: dev-python/texttable/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: d2980907cd901011996ee7aa876c2dbab0092723 X-VCS-Branch: master Date: Sat, 15 Apr 2017 22:32:07 +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: 12f5b8cd-d7c6-4b6f-803e-e064e951ef07 X-Archives-Hash: 8ef4f488d87264f8ccb0d30c7d4a5755 commit: d2980907cd901011996ee7aa876c2dbab0092723 Author: Manuel Rüger gentoo org> AuthorDate: Sat Apr 15 22:31:43 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sat Apr 15 22:31:43 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2980907 dev-python/texttable: Version bump to 0.8.8 Package-Manager: Portage-2.3.5, Repoman-2.3.2 dev-python/texttable/Manifest | 1 + dev-python/texttable/texttable-0.8.8.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-python/texttable/Manifest b/dev-python/texttable/Manifest index a856da345f9..705bf2dcf2d 100644 --- a/dev-python/texttable/Manifest +++ b/dev-python/texttable/Manifest @@ -1 +1,2 @@ DIST texttable-0.8.3.tar.gz 8569 SHA256 f333ac915e7c5daddc7d4877b096beafe74ea88b4b746f82a4b110f84e348701 SHA512 d9a50f6fd9cd2a6d55afd5e686ac8ff2b2ebcf8c8041209ffae3e3864529c54a384840a65df2b87a942528005ca864d00bb01dfaeb33308843c01db7471931c8 WHIRLPOOL 5086e7f26781b2cc9806420f7f9bf02a3e1a0c4d24dd2bfeb8ad8e497ecdbb5e4c8cf8a7de09ebe8cc7930eba54b0b560a9281471d8013a8a3fb472da928d066 +DIST texttable-0.8.8.tar.gz 10599 SHA256 0be1ecd6468847fc2f3b57b6c1862d8c0ae6832c037c97db502053311eff9a99 SHA512 4db089bee787103c00a54dfffcad15a8c299abeb48623c3b179f2a872bcae159a4e7068b2e4ca0efec95e6782b806a5898ad6e57f4290be697d0c8b913446b32 WHIRLPOOL b00be3e16c818a9b5cc030af0fc830ee6f4ef023350498de6f4f9ee1be48e23391997e2d32640e697a788a752c254a458a2608b8b0fc801c7b43803f792b3a41 diff --git a/dev-python/texttable/texttable-0.8.8.ebuild b/dev-python/texttable/texttable-0.8.8.ebuild new file mode 100644 index 00000000000..32b2e540201 --- /dev/null +++ b/dev-python/texttable/texttable-0.8.8.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="module for creating simple ASCII tables" +HOMEPAGE="http://foutaise.org/code/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +python_test() { + py.test tests.py || die +}