Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/, net-misc/sipp/files/
Date: Wed, 01 Feb 2023 19:27:22
Message-Id: 1675279598.f721bc1a1d7d2418a483675428399c02f833bebe.asturm@gentoo
1 commit: f721bc1a1d7d2418a483675428399c02f833bebe
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 27 21:25:59 2023 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 1 19:26:38 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f721bc1a
7
8 net-misc/sipp: drop 3.6.0
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 net-misc/sipp/Manifest | 1 -
13 .../sipp/files/sipp-3.6.0-parallel-build.patch | 11 -----
14 net-misc/sipp/sipp-3.6.0.ebuild | 49 ----------------------
15 3 files changed, 61 deletions(-)
16
17 diff --git a/net-misc/sipp/Manifest b/net-misc/sipp/Manifest
18 index e013d3d46161..67ff7f47058d 100644
19 --- a/net-misc/sipp/Manifest
20 +++ b/net-misc/sipp/Manifest
21 @@ -1,2 +1 @@
22 -DIST sipp-3.6.0.tar.gz 1055201 BLAKE2B 48b431bfc33d3a03e6e972ef3ce184989afb12c7e0f20c6c3cf9b72ebcd65cb12cf4cab2b90e010d16e17b9bb4832f42915b104ea9bd1253242d304ab4f3cb32 SHA512 eecbc18a18558a3fbc4f7c841d1fc8bd5be4b0c5d2bb363a12faf730f3c6a0773a24f07dbf062e68baf1a93b21686fa09258d0e08b45b4f941eb5d573bb25c12
23 DIST sipp-3.6.1.tar.gz 744407 BLAKE2B a201ecce624c15c51a66c3cb5ac467522755085419c2980b1f76340e7ffca5996516f34d7e52776a8aa0a2170ca2b7301030ecb50272a1c0a8e86aaf18a6de16 SHA512 58504c56ca0c14363fafc5d0598fd93857ef33cc5856f579a225fd0e38238f7d2c409127a18a368e22355cc3912758d4dba07bac7eaa3e8a0d2943ea5fdec602
24
25 diff --git a/net-misc/sipp/files/sipp-3.6.0-parallel-build.patch b/net-misc/sipp/files/sipp-3.6.0-parallel-build.patch
26 deleted file mode 100644
27 index 6521918339d2..000000000000
28 --- a/net-misc/sipp/files/sipp-3.6.0-parallel-build.patch
29 +++ /dev/null
30 @@ -1,11 +0,0 @@
31 ---- sipp-3.6.0/Makefile.am.o 2019-12-22 10:40:37.766229344 +0200
32 -+++ sipp-3.6.0/Makefile.am 2019-12-22 10:42:09.006266083 +0200
33 -@@ -172,7 +172,7 @@
34 -
35 - # Ensure that after a reconfigure the source is cleaned.
36 - .autoclean: Makefile
37 -- make clean
38 -+ $(MAKE) clean
39 - echo > .autoclean
40 - BUILT_SOURCES = .autoclean
41 -
42
43 diff --git a/net-misc/sipp/sipp-3.6.0.ebuild b/net-misc/sipp/sipp-3.6.0.ebuild
44 deleted file mode 100644
45 index bc7ef82c8b22..000000000000
46 --- a/net-misc/sipp/sipp-3.6.0.ebuild
47 +++ /dev/null
48 @@ -1,49 +0,0 @@
49 -# Copyright 1999-2021 Gentoo Authors
50 -# Distributed under the terms of the GNU General Public License v2
51 -
52 -EAPI=7
53 -
54 -inherit autotools
55 -
56 -DESCRIPTION="A free Open Source test tool / traffic generator for the SIP protocol"
57 -HOMEPAGE="http://sipp.sourceforge.net/ https://github.com/SIPp/sipp/releases"
58 -SRC_URI="https://github.com/SIPp/sipp/releases/download/v${PV}/${P}.tar.gz"
59 -
60 -LICENSE="GPL-2 ISC"
61 -SLOT="0"
62 -KEYWORDS="~amd64 ~x86"
63 -IUSE="gsl +pcap sctp +ssl"
64 -
65 -PATCHES=( "${FILESDIR}/sipp-3.6.0-parallel-build.patch" )
66 -
67 -DEPEND="sys-libs/ncurses:=
68 - gsl? ( sci-libs/gsl:= )
69 - pcap? (
70 - net-libs/libpcap
71 - net-libs/libnet:1.1
72 - )
73 - ssl? ( dev-libs/openssl:= )
74 -"
75 -RDEPEND="${DEPEND}"
76 -
77 -src_prepare() {
78 - default
79 - eautoreconf
80 -}
81 -
82 -src_configure() {
83 - econf \
84 - $(use_with gsl) \
85 - $(use_with pcap) \
86 - $(use_with sctp) \
87 - $(use_with ssl openssl) \
88 - --with-rtpstream
89 -}
90 -
91 -src_install() {
92 - default
93 -
94 - insinto /usr/share/${PN}
95 - use pcap && doins pcap/*.pcap
96 - dodoc CHANGES.md README.md
97 -}