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