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 B0523138334 for ; Wed, 19 Sep 2018 21:13:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 74A72E08AE; Wed, 19 Sep 2018 21:13:08 +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 4C857E08AE for ; Wed, 19 Sep 2018 21:13:08 +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 B510C335CF3 for ; Wed, 19 Sep 2018 21:13:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CC6FA3DB for ; Wed, 19 Sep 2018 21:13:04 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1537391576.f16ab4e29d366cd7b2c4a924582b86db598a969b.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyfiglet/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyfiglet/Manifest dev-python/pyfiglet/metadata.xml dev-python/pyfiglet/pyfiglet-0.7.5.ebuild X-VCS-Directories: dev-python/pyfiglet/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: f16ab4e29d366cd7b2c4a924582b86db598a969b X-VCS-Branch: master Date: Wed, 19 Sep 2018 21:13:04 +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: 56bed789-b6f8-483a-8adc-624059c4054d X-Archives-Hash: 6ccdf0f8aa388ae606233bf06a807ba7 commit: f16ab4e29d366cd7b2c4a924582b86db598a969b Author: Patrice Clement gentoo org> AuthorDate: Wed Sep 19 20:01:51 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Sep 19 21:12:56 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f16ab4e2 dev-python/pyfiglet: new package. pyfiglet is an implementation of figlet in Python. Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/pyfiglet/Manifest | 1 + dev-python/pyfiglet/metadata.xml | 15 +++++++++++++++ dev-python/pyfiglet/pyfiglet-0.7.5.ebuild | 18 ++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/dev-python/pyfiglet/Manifest b/dev-python/pyfiglet/Manifest new file mode 100644 index 00000000000..ddc3d0265a9 --- /dev/null +++ b/dev-python/pyfiglet/Manifest @@ -0,0 +1 @@ +DIST pyfiglet-0.7.5.tar.gz 767904 BLAKE2B 761b933d60d074d3966fd0c8a10a5e0da056ef351c3ab31cbb43cd545ea75baf8b4daf1c2b61f8023b88d9c485acd402b12c1ccde103e545882588d87c8302f2 SHA512 835a2710c576e3695388bcad60c93bd58394bdd263cce9b51bfd8d1d82582765924215bf1e7560b7be01d4551923b29f56c2e063e646ef5cffc970521e2cbfb2 diff --git a/dev-python/pyfiglet/metadata.xml b/dev-python/pyfiglet/metadata.xml new file mode 100644 index 00000000000..6f869257129 --- /dev/null +++ b/dev-python/pyfiglet/metadata.xml @@ -0,0 +1,15 @@ + + + + + python@gentoo.org + Gentoo Python Project + + + monsieurp@gentoo.org + Patrice Clement + + + pwaller/pyfiglet + + diff --git a/dev-python/pyfiglet/pyfiglet-0.7.5.ebuild b/dev-python/pyfiglet/pyfiglet-0.7.5.ebuild new file mode 100644 index 00000000000..57ef0d7b8e6 --- /dev/null +++ b/dev-python/pyfiglet/pyfiglet-0.7.5.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="An implementation of figlet written in Python" +HOMEPAGE="https://github.com/pwaller/pyfiglet" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"