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