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 470D6139083 for ; Mon, 11 Dec 2017 04:31:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8367EE0FD5; Mon, 11 Dec 2017 04:31:10 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 631C5E0ECB for ; Mon, 11 Dec 2017 04:31:10 +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 363C633BF3C for ; Mon, 11 Dec 2017 04:31:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCFF9AE77 for ; Mon, 11 Dec 2017 04:31:07 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1512966647.f218efbf113022b7bd647c596b427ec91c016d78.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aiosmtpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/aiosmtpd/Manifest dev-python/aiosmtpd/aiosmtpd-1.0.ebuild X-VCS-Directories: dev-python/aiosmtpd/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: f218efbf113022b7bd647c596b427ec91c016d78 X-VCS-Branch: master Date: Mon, 11 Dec 2017 04:31: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: 76237e45-2cd9-48df-897f-f897a54d2718 X-Archives-Hash: c35e619c0fbbca58f465240a097ac8f2 commit: f218efbf113022b7bd647c596b427ec91c016d78 Author: Matthew Thode gentoo org> AuthorDate: Mon Dec 11 04:23:34 2017 +0000 Commit: Matt Thode gentoo org> CommitDate: Mon Dec 11 04:30:47 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f218efbf dev-python/aiosmtpd: 1.0 for mailman-3.1.1 Package-Manager: Portage-2.3.14, Repoman-2.3.6 dev-python/aiosmtpd/Manifest | 1 + dev-python/aiosmtpd/aiosmtpd-1.0.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/aiosmtpd/Manifest b/dev-python/aiosmtpd/Manifest index 35bdebd8ba9..725fae4abd8 100644 --- a/dev-python/aiosmtpd/Manifest +++ b/dev-python/aiosmtpd/Manifest @@ -1 +1,2 @@ +DIST aiosmtpd-1.0.tar.gz 49930 BLAKE2B 7c8f845746b51e2b77f2ff00de2c88c3a090a4cd65e55fa69fc371f8ac5a2966c31e3e7184188a1b4af1f5c3d22b7af5655c5673d199b9920865ddf56c119a06 SHA512 874b3505dd35cbb176cba058a8816329eb4177db705b10c3883f88d76e3f587efc35543812fd36a03f453c8c1ee359bb3f0239d8a246908c5c17b59be134d933 DIST aiosmtpd-1.1.tar.gz 50722 BLAKE2B c7d21eea7816a758fb69061c0f1c4c5dbb7bd28a6daddc436211e4d8066380847255af537904ad5c09badb813269d0bc4b54dbb527b7b0c717d498c9475c8c2d SHA512 b61df616f2e14d1da67ac05149543bf48b14a31d44437d9a1dd11b166b98b56220c00e7c55e18d4fd99872d724e23f272922dd3548150632a189d9cb9b652883 diff --git a/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild b/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild new file mode 100644 index 00000000000..8595ce17c0d --- /dev/null +++ b/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_4 python3_5 python3_6 ) +inherit distutils-r1 + +DESCRIPTION="asyncio based SMTP server" +HOMEPAGE="http://aiosmtpd.readthedocs.io/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/atpublic[${PYTHON_USEDEP}]" + +src_prepare() { + rm -r examples + distutils-r1_python_prepare_all +}