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 49DD8138330 for ; Wed, 10 Jan 2018 01:21:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FD4DE0A7C; Wed, 10 Jan 2018 01:21:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7E4A1E0A7C for ; Wed, 10 Jan 2018 01:21:04 +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 E81EC335C07 for ; Wed, 10 Jan 2018 01:21:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B37F815D for ; Wed, 10 Jan 2018 01:20:57 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1515547165.33bf6c2c9cc6a3ef75ed1c84cbe2687e19ae7972.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/portend/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/portend/Manifest dev-python/portend/metadata.xml dev-python/portend/portend-2.2.ebuild X-VCS-Directories: dev-python/portend/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 33bf6c2c9cc6a3ef75ed1c84cbe2687e19ae7972 X-VCS-Branch: master Date: Wed, 10 Jan 2018 01:20:57 +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: 953753c8-6ad1-42b3-9def-a30868e3357f X-Archives-Hash: 8bcbc56b1a1f668ff1def4b466a8b5a9 commit: 33bf6c2c9cc6a3ef75ed1c84cbe2687e19ae7972 Author: Zac Medico gentoo org> AuthorDate: Tue Jan 9 23:34:24 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Wed Jan 10 01:19:25 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33bf6c2c dev-python/portend: new package Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-python/portend/Manifest | 1 + dev-python/portend/metadata.xml | 12 ++++++++++++ dev-python/portend/portend-2.2.ebuild | 26 ++++++++++++++++++++++++++ 3 files changed, 39 insertions(+) diff --git a/dev-python/portend/Manifest b/dev-python/portend/Manifest new file mode 100644 index 00000000000..0c788ac69e6 --- /dev/null +++ b/dev-python/portend/Manifest @@ -0,0 +1 @@ +DIST portend-2.2.tar.gz 7974 BLAKE2B 77ffcf02b65f276a5ca1f1bdd76afd54e8f6afcb1c55b6948862017f973772dfe65c9b934ffbc98d2f36f799131d23d4a7128f46e46183010def8936f2dd0bad SHA512 1782132b0dec5b678892190b70ab795b1748dfa17e257b6655fc803f0cf19652725778cd329c3609353f969959501dd11fd2b9726cfcdf2c58689e2ce280c146 diff --git a/dev-python/portend/metadata.xml b/dev-python/portend/metadata.xml new file mode 100644 index 00000000000..530cb9c31df --- /dev/null +++ b/dev-python/portend/metadata.xml @@ -0,0 +1,12 @@ + + + + + zmedico@gentoo.org + Zac Medico + + + portend + jaraco/portend + + diff --git a/dev-python/portend/portend-2.2.ebuild b/dev-python/portend/portend-2.2.ebuild new file mode 100644 index 00000000000..4260f3a92b0 --- /dev/null +++ b/dev-python/portend/portend-2.2.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=( python2_7 python3_{4,5,6} pypy pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="TCP port monitoring utilities" +HOMEPAGE="https://pypi.python.org/pypi/portend https://github.com/jaraco/portend" +SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=">=dev-python/tempora-1.8[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}] + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +python_test() { + py.test -v || die "tests failed under ${EPTYHON}" +}