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 150FB139085 for ; Fri, 6 Jan 2017 00:12:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3C48121C088; Fri, 6 Jan 2017 00:12:28 +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 15CD221C084 for ; Fri, 6 Jan 2017 00:12:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E65B4341375 for ; Fri, 6 Jan 2017 00:12:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4CE192622 for ; Fri, 6 Jan 2017 00:12:25 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1483661279.96bffdec0b5ead8f94ed1ae22e642b2bd87ed22b.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/readlike/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/readlike/Manifest dev-python/readlike/metadata.xml dev-python/readlike/readlike-0.1.2.ebuild X-VCS-Directories: dev-python/readlike/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 96bffdec0b5ead8f94ed1ae22e642b2bd87ed22b X-VCS-Branch: master Date: Fri, 6 Jan 2017 00:12:25 +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: 96f84843-5310-4810-b8ea-fae0d7917d61 X-Archives-Hash: e72ce8ba38acc4560f7e7713fd968737 commit: 96bffdec0b5ead8f94ed1ae22e642b2bd87ed22b Author: William Hubbs gentoo org> AuthorDate: Tue Jan 3 18:25:08 2017 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Jan 6 00:07:59 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96bffdec dev-python/readlike: initial ebuild Package-Manager: Portage-2.3.0, Repoman-2.3.1 dev-python/readlike/Manifest | 1 + dev-python/readlike/metadata.xml | 11 +++++++++++ dev-python/readlike/readlike-0.1.2.ebuild | 21 +++++++++++++++++++++ 3 files changed, 33 insertions(+) diff --git a/dev-python/readlike/Manifest b/dev-python/readlike/Manifest new file mode 100644 index 00000000..93152c0 --- /dev/null +++ b/dev-python/readlike/Manifest @@ -0,0 +1 @@ +DIST readlike-0.1.2.tar.gz 5068 SHA256 08645493a24eecbcad70a5ed7fbf1a3820ba5e57e9690297edc485c2992f66b2 SHA512 4ecd694c69c615ec37da05341596af4ec26abeeda78ecf10fc3019533a7ab092ed1e1e4f8910a7835d7ffb157b203cb0395a2eba135d3aba861abb75d466980e WHIRLPOOL d41e5998be1219bba36507e9fa5d14197070877ea6c938271df30c7ee5ce46f780b405fdb32d46cb3707779f0af3681b617ba4ea4f51acccca45ebb3100771f4 diff --git a/dev-python/readlike/metadata.xml b/dev-python/readlike/metadata.xml new file mode 100644 index 00000000..b692da6 --- /dev/null +++ b/dev-python/readlike/metadata.xml @@ -0,0 +1,11 @@ + + + + + williamh@gentoo.org + William Hubbs + + + python@gentoo.org + + diff --git a/dev-python/readlike/readlike-0.1.2.ebuild b/dev-python/readlike/readlike-0.1.2.ebuild new file mode 100644 index 00000000..3255f75 --- /dev/null +++ b/dev-python/readlike/readlike-0.1.2.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5} ) +inherit distutils-r1 + +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +KEYWORDS="~amd64" + +DESCRIPTION="a python library similar to readline" +HOMEPAGE="https://pypi.python.org/pypi/readlike" + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="dev-python/setuptools" +RDEPEND="${DEPEND}"