Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aiosmtpd/
Date: Fri, 01 Feb 2019 05:37:19
Message-Id: 1548999358.ccdaaa3daae0be0a5cce259f5a194da683afa08c.gyakovlev@gentoo
1 commit: ccdaaa3daae0be0a5cce259f5a194da683afa08c
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Thu Jan 31 20:58:23 2019 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 1 05:35:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccdaaa3d
7
8 dev-python/aiosmtpd: use HTTPS, add missing die
9
10 Closes: https://github.com/gentoo/gentoo/pull/10955
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
13
14 dev-python/aiosmtpd/aiosmtpd-1.0.ebuild | 7 +++----
15 dev-python/aiosmtpd/aiosmtpd-1.1.ebuild | 7 +++----
16 2 files changed, 6 insertions(+), 8 deletions(-)
17
18 diff --git a/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild b/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild
19 index 8595ce17c0d..dc313290230 100644
20 --- a/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild
21 +++ b/dev-python/aiosmtpd/aiosmtpd-1.0.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2017 Gentoo Foundation
24 +# Copyright 1999-2019 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=6
28 @@ -7,18 +7,17 @@ PYTHON_COMPAT=( python3_4 python3_5 python3_6 )
29 inherit distutils-r1
30
31 DESCRIPTION="asyncio based SMTP server"
32 -HOMEPAGE="http://aiosmtpd.readthedocs.io/"
33 +HOMEPAGE="https://aiosmtpd.readthedocs.io/en/latest/"
34 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
35
36 LICENSE="Apache-2.0"
37 SLOT="0"
38 KEYWORDS="~amd64 ~x86"
39 -IUSE=""
40
41 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
42 RDEPEND="dev-python/atpublic[${PYTHON_USEDEP}]"
43
44 src_prepare() {
45 - rm -r examples
46 + rm -r examples || die
47 distutils-r1_python_prepare_all
48 }
49
50 diff --git a/dev-python/aiosmtpd/aiosmtpd-1.1.ebuild b/dev-python/aiosmtpd/aiosmtpd-1.1.ebuild
51 index 8595ce17c0d..dc313290230 100644
52 --- a/dev-python/aiosmtpd/aiosmtpd-1.1.ebuild
53 +++ b/dev-python/aiosmtpd/aiosmtpd-1.1.ebuild
54 @@ -1,4 +1,4 @@
55 -# Copyright 1999-2017 Gentoo Foundation
56 +# Copyright 1999-2019 Gentoo Authors
57 # Distributed under the terms of the GNU General Public License v2
58
59 EAPI=6
60 @@ -7,18 +7,17 @@ PYTHON_COMPAT=( python3_4 python3_5 python3_6 )
61 inherit distutils-r1
62
63 DESCRIPTION="asyncio based SMTP server"
64 -HOMEPAGE="http://aiosmtpd.readthedocs.io/"
65 +HOMEPAGE="https://aiosmtpd.readthedocs.io/en/latest/"
66 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
67
68 LICENSE="Apache-2.0"
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86"
71 -IUSE=""
72
73 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
74 RDEPEND="dev-python/atpublic[${PYTHON_USEDEP}]"
75
76 src_prepare() {
77 - rm -r examples
78 + rm -r examples || die
79 distutils-r1_python_prepare_all
80 }