Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aiosmtpd/
Date: Mon, 11 Dec 2017 04:31:11
Message-Id: 1512966647.f218efbf113022b7bd647c596b427ec91c016d78.prometheanfire@gentoo
1 commit: f218efbf113022b7bd647c596b427ec91c016d78
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Mon Dec 11 04:23:34 2017 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 11 04:30:47 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f218efbf
7
8 dev-python/aiosmtpd: 1.0 for mailman-3.1.1
9
10 Package-Manager: Portage-2.3.14, Repoman-2.3.6
11
12 dev-python/aiosmtpd/Manifest | 1 +
13 dev-python/aiosmtpd/aiosmtpd-1.0.ebuild | 24 ++++++++++++++++++++++++
14 2 files changed, 25 insertions(+)
15
16 diff --git a/dev-python/aiosmtpd/Manifest b/dev-python/aiosmtpd/Manifest
17 index 35bdebd8ba9..725fae4abd8 100644
18 --- a/dev-python/aiosmtpd/Manifest
19 +++ b/dev-python/aiosmtpd/Manifest
20 @@ -1 +1,2 @@
21 +DIST aiosmtpd-1.0.tar.gz 49930 BLAKE2B 7c8f845746b51e2b77f2ff00de2c88c3a090a4cd65e55fa69fc371f8ac5a2966c31e3e7184188a1b4af1f5c3d22b7af5655c5673d199b9920865ddf56c119a06 SHA512 874b3505dd35cbb176cba058a8816329eb4177db705b10c3883f88d76e3f587efc35543812fd36a03f453c8c1ee359bb3f0239d8a246908c5c17b59be134d933
22 DIST aiosmtpd-1.1.tar.gz 50722 BLAKE2B c7d21eea7816a758fb69061c0f1c4c5dbb7bd28a6daddc436211e4d8066380847255af537904ad5c09badb813269d0bc4b54dbb527b7b0c717d498c9475c8c2d SHA512 b61df616f2e14d1da67ac05149543bf48b14a31d44437d9a1dd11b166b98b56220c00e7c55e18d4fd99872d724e23f272922dd3548150632a189d9cb9b652883
23
24 diff --git a/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild b/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild
25 new file mode 100644
26 index 00000000000..8595ce17c0d
27 --- /dev/null
28 +++ b/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild
29 @@ -0,0 +1,24 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +PYTHON_COMPAT=( python3_4 python3_5 python3_6 )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="asyncio based SMTP server"
39 +HOMEPAGE="http://aiosmtpd.readthedocs.io/"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="Apache-2.0"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
48 +RDEPEND="dev-python/atpublic[${PYTHON_USEDEP}]"
49 +
50 +src_prepare() {
51 + rm -r examples
52 + distutils-r1_python_prepare_all
53 +}