Gentoo Archives: gentoo-commits

From: Patrick McLean <chutzpah@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/exabgp/
Date: Wed, 02 Nov 2022 17:05:50
Message-Id: 1667408734.0f789d05cf9dcda20458f8dff2f754d72d3ae891.chutzpah@gentoo
1 commit: 0f789d05cf9dcda20458f8dff2f754d72d3ae891
2 Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 2 17:05:34 2022 +0000
4 Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 2 17:05:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f789d05
7
8 net-misc/exabgp: drop 4.2.19-r1
9
10 Closes: https://bugs.gentoo.org/878717
11 Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
12
13 net-misc/exabgp/Manifest | 1 -
14 net-misc/exabgp/exabgp-4.2.19-r1.ebuild | 64 ---------------------------------
15 2 files changed, 65 deletions(-)
16
17 diff --git a/net-misc/exabgp/Manifest b/net-misc/exabgp/Manifest
18 index e4972b9defb6..1d1bd126e5f8 100644
19 --- a/net-misc/exabgp/Manifest
20 +++ b/net-misc/exabgp/Manifest
21 @@ -1,2 +1 @@
22 -DIST exabgp-4.2.19.tar.gz 2932903 BLAKE2B de988dca0d6c32dbe5a5a04a2f3b5065a71ec83aabccecf675ddf09f9bd38ee417b670c5a2940d12bf3618a9a39e8ec6d0184bfa77cfda8c5e853da0fd52bda4 SHA512 35031fbf1b73339926dd08c7edc80497c3a5c4d1a5d626bf2a704ad2e70baeca51a88fe56fe3e43b97187010cf7e89c2b69f0b28276bbf9a945e761c6578818f
23 DIST exabgp-4.2.21.tar.gz 2933721 BLAKE2B 1d4b7cb6d053d2a9b8a338b6cf5f84d8d4ea2e1d1685cac8fb9b4b02cbdb8b9d5de41d4072d9379892e4bf89444f301f88243e5d5145d213956be7319861b723 SHA512 0efc7143191e8b557297e9329354c01e2418e0c4c45753941eba3a1f063e77d17a0efa7a14a3062764e45e709f0598f491c10e2c02e751590bb7c0943b61932b
24
25 diff --git a/net-misc/exabgp/exabgp-4.2.19-r1.ebuild b/net-misc/exabgp/exabgp-4.2.19-r1.ebuild
26 deleted file mode 100644
27 index 618539f9bee6..000000000000
28 --- a/net-misc/exabgp/exabgp-4.2.19-r1.ebuild
29 +++ /dev/null
30 @@ -1,64 +0,0 @@
31 -# Copyright 1999-2022 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -DISTUTILS_USE_SETUPTOOLS=rdepend
38 -inherit tmpfiles systemd distutils-r1
39 -
40 -DESCRIPTION="The BGP swiss army knife of networking"
41 -HOMEPAGE="https://github.com/Exa-Networks/exabgp"
42 -SRC_URI="https://github.com/Exa-Networks/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="~amd64"
47 -IUSE="test"
48 -RESTRICT="!test? ( test )"
49 -
50 -RDEPEND="
51 - acct-group/exabgp
52 - acct-user/exabgp
53 -"
54 -BDEPEND="
55 - test? (
56 - dev-python/psutil[${PYTHON_USEDEP}]
57 - dev-python/nose[${PYTHON_USEDEP}]
58 - dev-python/six[${PYTHON_USEDEP}]
59 - )
60 -"
61 -
62 -PATCHES=(
63 - "${FILESDIR}/exabgp-4.2.7-paths.patch"
64 - "${FILESDIR}/exabgp-4.2.10-ip-path.patch"
65 - "${FILESDIR}/exabgp-4.2.11-healthcheck-allow-disable-metric.patch"
66 - "${FILESDIR}/exabgp-4.2.11-healthcheck-fix-log-crash.patch"
67 - "${FILESDIR}/exabgp-4.2.11-less-verbose-logging.patch"
68 -)
69 -
70 -python_test() {
71 - ./qa/bin/parsing || die "tests fail with ${EPYTHON}"
72 - nosetests -v ./qa/tests/*_test.py || die "tests fail with ${EPYTHON}"
73 -}
74 -
75 -python_install_all() {
76 - distutils-r1_python_install_all
77 -
78 - newinitd "${FILESDIR}/${PN}.initd-r2" ${PN}
79 - newconfd "${FILESDIR}/${PN}.confd" ${PN}
80 -
81 - newtmpfiles "${FILESDIR}/exabgp.tmpfiles" ${PN}.conf
82 - systemd_dounit etc/systemd/*
83 -
84 - insinto /etc/logrotate.d
85 - newins "${FILESDIR}/${PN}.logrotate" ${PN}
86 -
87 - keepdir /etc/exabgp
88 -
89 - doman doc/man/*.?
90 -}
91 -
92 -pkg_postinst() {
93 - tmpfiles_process ${PN}.conf
94 -}