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 D2ECF138CD0 for ; Sat, 30 May 2015 06:03:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 845ADE089F; Sat, 30 May 2015 06:03:42 +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 2082AE089F for ; Sat, 30 May 2015 06:03:42 +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 5F659340F9E for ; Sat, 30 May 2015 06:03:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A8A4A0D for ; Sat, 30 May 2015 06:03:37 +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: <1432932955.c2c16f571a1b442987ba4b8416f8ea0feaf8ba24.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-python/ptyprocess/ X-VCS-Repository: proj/sci X-VCS-Files: dev-python/ptyprocess/ChangeLog dev-python/ptyprocess/metadata.xml dev-python/ptyprocess/ptyprocess-0.5.ebuild dev-python/ptyprocess/ptyprocess-9999.ebuild X-VCS-Directories: dev-python/ptyprocess/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: c2c16f571a1b442987ba4b8416f8ea0feaf8ba24 X-VCS-Branch: master Date: Sat, 30 May 2015 06:03:37 +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: 8c4269ba-b73c-4d7a-9e70-41baf314f727 X-Archives-Hash: 755f9bf783d6c1e70bc140094964cbdc commit: c2c16f571a1b442987ba4b8416f8ea0feaf8ba24 Author: Marius Brehler linux sungazer de> AuthorDate: Fri May 29 20:55:55 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Fri May 29 20:55:55 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c2c16f57 dev-python/ptyprocess: Initial ebuild Package-Manager: portage-2.2.18 dev-python/ptyprocess/ChangeLog | 10 ++++++++++ dev-python/ptyprocess/metadata.xml | 5 +++++ dev-python/ptyprocess/ptyprocess-0.5.ebuild | 1 + dev-python/ptyprocess/ptyprocess-9999.ebuild | 24 ++++++++++++++++++++++++ 4 files changed, 40 insertions(+) diff --git a/dev-python/ptyprocess/ChangeLog b/dev-python/ptyprocess/ChangeLog new file mode 100644 index 0000000..7e1d345 --- /dev/null +++ b/dev-python/ptyprocess/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for dev-python/ptyprocess +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*ptyprocess-0.5 (29 May 2015) +*ptyprocess-9999 (29 May 2015) + + 29 May 2015; Marius Brehler +metadata.xml, + +ptyprocess-0.5.ebuild, +ptyprocess-9999.ebuild: + Initial ebuild diff --git a/dev-python/ptyprocess/metadata.xml b/dev-python/ptyprocess/metadata.xml new file mode 100644 index 0000000..897aa2e --- /dev/null +++ b/dev-python/ptyprocess/metadata.xml @@ -0,0 +1,5 @@ + + + + sci + diff --git a/dev-python/ptyprocess/ptyprocess-0.5.ebuild b/dev-python/ptyprocess/ptyprocess-0.5.ebuild new file mode 120000 index 0000000..905bef5 --- /dev/null +++ b/dev-python/ptyprocess/ptyprocess-0.5.ebuild @@ -0,0 +1 @@ +ptyprocess-9999.ebuild \ No newline at end of file diff --git a/dev-python/ptyprocess/ptyprocess-9999.ebuild b/dev-python/ptyprocess/ptyprocess-9999.ebuild new file mode 100644 index 0000000..6fd8b9c --- /dev/null +++ b/dev-python/ptyprocess/ptyprocess-9999.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit distutils-r1 + +MY_PN="pyFFTW" + +DESCRIPTION="Launch a subprocess in a pseudo terminal (pty), and interact with both the process and its pty" +HOMEPAGE="https://github.com/pexpect/ptyprocess" + +if [ ${PV} == "9999" ] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/pexpect/${PN}.git git://github.com/pexpect/${MY_PN}.git" +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="ISC" +SLOT="0"