Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/onionrouter/
Date: Fri, 30 Oct 2020 13:57:22
Message-Id: 1604066232.bbc2cffec0c4d0674f8e5158e90c4c8dfb32079d.candrews@gentoo
1 commit: bbc2cffec0c4d0674f8e5158e90c4c8dfb32079d
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 30 13:56:21 2020 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 30 13:57:12 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbc2cffe
7
8 net-mail/onionrouter: 0.6.1 version bump
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.2
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 net-mail/onionrouter/Manifest | 1 +
14 net-mail/onionrouter/onionrouter-0.6.1.ebuild | 50 +++++++++++++++++++++++++++
15 2 files changed, 51 insertions(+)
16
17 diff --git a/net-mail/onionrouter/Manifest b/net-mail/onionrouter/Manifest
18 index 5ed7784056b..1ecf64b1152 100644
19 --- a/net-mail/onionrouter/Manifest
20 +++ b/net-mail/onionrouter/Manifest
21 @@ -1 +1,2 @@
22 DIST onionrouter-0.6.0.tar.gz 26525 BLAKE2B 59d0709d3d0344422840b89908aedb97a0b869208d9f5e690bede317f0fe20a11ff1f2f2fac11a7827736ddc5e6d27ce6b12cd9395a82f31f7bb51ab4ca511c1 SHA512 251228e677ca1df182e943d692060d5ad83bcaf407c31e30eeb71e9f581d7140eb4edc8f00f7baa47e6561a5457c0f10b25e5c581902aaca7906780a2b8dc69c
23 +DIST onionrouter-0.6.1.tar.gz 26584 BLAKE2B e1d722ba4e7ec617e39fda54299cd71d9d47bbd34fd44a19ffef8f2349f9b238251b47d01c369223393a9d7f2e0a05c5d8b7dc9f991c7d386ba800086b8cc226 SHA512 5d08e7a7310e69e29eaba2098a62cef4b5044c207f4a78b4cfebfd2a9d18bd812b485793ff7395186d4949ad9604b4e82dc0e9b1200abf03108466bf531a6d15
24
25 diff --git a/net-mail/onionrouter/onionrouter-0.6.1.ebuild b/net-mail/onionrouter/onionrouter-0.6.1.ebuild
26 new file mode 100644
27 index 00000000000..2efd032bc84
28 --- /dev/null
29 +++ b/net-mail/onionrouter/onionrouter-0.6.1.ebuild
30 @@ -0,0 +1,50 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7,8,9} )
37 +DISTUTILS_SINGLE_IMPL=1
38 +DISTUTILS_USE_SETUPTOOLS=rdepend
39 +
40 +inherit distutils-r1 systemd
41 +
42 +DESCRIPTION=".onion discovery via SRV DNS lookups for use with postfix"
43 +HOMEPAGE="https://pypi.org/project/onionrouter/ https://github.com/ehloonion/onionrouter/"
44 +if [[ ${PV} == *9999 ]] ; then
45 + SRC_URI=""
46 + EGIT_REPO_URI="https://github.com/ehloonion/onionrouter.git"
47 + inherit git-r3
48 +else
49 + KEYWORDS="~amd64"
50 + SRC_URI="https://pypi.io/packages/source/${PN::1}/${PN}/${P}.tar.gz"
51 +fi
52 +IUSE="test"
53 +RESTRICT="!test? ( test )"
54 +
55 +LICENSE="GPL-3+"
56 +SLOT="0"
57 +
58 +RDEPEND="$(python_gen_cond_dep '
59 + dev-python/dnspython[${PYTHON_USEDEP}]
60 + dev-python/pyyaml[${PYTHON_USEDEP}]
61 +')"
62 +BDEPEND="$(python_gen_cond_dep '
63 + test? (
64 + dev-python/pytest[${PYTHON_USEDEP}]
65 + dev-python/wheel[${PYTHON_USEDEP}]
66 + )
67 +')"
68 +
69 +distutils_enable_tests pytest
70 +
71 +src_prepare() {
72 + distutils-r1_src_prepare
73 +}
74 +
75 +src_install() {
76 + distutils-r1_src_install
77 + systemd_dounit "${FILESDIR}/${PN}.service"
78 + insinto /etc/onionrouter
79 + doins "${S}/onionrouter/configs/onionrouter.ini"
80 +}