* [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/
@ 2019-12-22 16:59 Joonas Niilola
0 siblings, 0 replies; 9+ messages in thread
From: Joonas Niilola @ 2019-12-22 16:59 UTC (permalink / raw
To: gentoo-commits
commit: 8d5023090d4971f331182543fd493cf334ef8937
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 22 16:06:47 2019 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sun Dec 22 16:59:27 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d502309
net-misc/sipp: sort DEPEND
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-misc/sipp/sipp-3.6.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-misc/sipp/sipp-3.6.0.ebuild b/net-misc/sipp/sipp-3.6.0.ebuild
index e4b282e3f3f..5ffd92882ca 100644
--- a/net-misc/sipp/sipp-3.6.0.ebuild
+++ b/net-misc/sipp/sipp-3.6.0.ebuild
@@ -17,12 +17,12 @@ IUSE="gsl +pcap sctp +ssl"
PATCHES=( "${FILESDIR}/sipp-3.6.0-parallel-build.patch" )
DEPEND="sys-libs/ncurses:=
- ssl? ( dev-libs/openssl:= )
+ gsl? ( sci-libs/gsl:= )
pcap? (
net-libs/libpcap
net-libs/libnet:1.1
)
- gsl? ( sci-libs/gsl:= )
+ ssl? ( dev-libs/openssl:= )
"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/
@ 2021-02-22 7:25 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-02-22 7:25 UTC (permalink / raw
To: gentoo-commits
commit: c2c6318ed628c21cf264a6dd277b75ad1ef32acc
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Fri Feb 12 09:03:44 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 07:24:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2c6318e
net-misc/sipp: Version 3.6.1
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/19423
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/sipp/Manifest | 1 +
net-misc/sipp/sipp-3.6.1.ebuild | 52 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/net-misc/sipp/Manifest b/net-misc/sipp/Manifest
index b6391ce79e6..e013d3d4616 100644
--- a/net-misc/sipp/Manifest
+++ b/net-misc/sipp/Manifest
@@ -1 +1,2 @@
DIST sipp-3.6.0.tar.gz 1055201 BLAKE2B 48b431bfc33d3a03e6e972ef3ce184989afb12c7e0f20c6c3cf9b72ebcd65cb12cf4cab2b90e010d16e17b9bb4832f42915b104ea9bd1253242d304ab4f3cb32 SHA512 eecbc18a18558a3fbc4f7c841d1fc8bd5be4b0c5d2bb363a12faf730f3c6a0773a24f07dbf062e68baf1a93b21686fa09258d0e08b45b4f941eb5d573bb25c12
+DIST sipp-3.6.1.tar.gz 744407 BLAKE2B a201ecce624c15c51a66c3cb5ac467522755085419c2980b1f76340e7ffca5996516f34d7e52776a8aa0a2170ca2b7301030ecb50272a1c0a8e86aaf18a6de16 SHA512 58504c56ca0c14363fafc5d0598fd93857ef33cc5856f579a225fd0e38238f7d2c409127a18a368e22355cc3912758d4dba07bac7eaa3e8a0d2943ea5fdec602
diff --git a/net-misc/sipp/sipp-3.6.1.ebuild b/net-misc/sipp/sipp-3.6.1.ebuild
new file mode 100644
index 00000000000..3145570a2b5
--- /dev/null
+++ b/net-misc/sipp/sipp-3.6.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A free Open Source test tool / traffic generator for the SIP protocol"
+HOMEPAGE="http://sipp.sourceforge.net/ https://github.com/SIPp/sipp/releases"
+SRC_URI="https://github.com/SIPp/sipp/releases/download/v${PV}/${PF}.tar.gz"
+
+LICENSE="GPL-2 ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gsl +pcap sctp +ssl"
+
+DEPEND="sys-libs/ncurses:=
+ gsl? ( sci-libs/gsl:= )
+ pcap? (
+ net-libs/libpcap
+ net-libs/libnet:1.1
+ )
+ ssl? ( dev-libs/openssl:= )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+ default
+
+ # version.h is in ${S}, and needs to be in ${S}/include for cmake to work.
+ ln -s ../version.h "${S}/include/" || die "Error creating version.h symlink"
+
+ cmake_src_prepare
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DUSE_GSL=$(usex gsl 1 0)
+ -DUSE_PCAP=$(usex pcap 1 0)
+ -DUSE_SCTP=$(usex sctp 1 0)
+ -DUSE_SSL=$(usex ssl 1 0)
+ )
+
+ cmake_src_configure
+}
+
+src_install() {
+ default
+ insinto /usr/share/${PN}
+ use pcap && doins pcap/*.pcap
+ dodoc CHANGES.md README.md
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/
@ 2021-06-29 16:35 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-06-29 16:35 UTC (permalink / raw
To: gentoo-commits
commit: 4b105b84f4d13e341f6a7a9cd8482032fc17bc9a
Author: Hank Leininger <hlein <AT> korelogic <DOT> com>
AuthorDate: Tue Jun 29 16:35:18 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 29 16:35:29 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b105b84
net-misc/sipp: add net-misc/lksctp-tools to DEPEND
Signed-off-by: Hank Leininger <hlein <AT> korelogic.com>
Closes: https://bugs.gentoo.org/799230
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Closes: https://github.com/gentoo/gentoo/pull/21474
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/sipp/sipp-3.6.1.ebuild | 1 +
1 file changed, 1 insertion(+)
diff --git a/net-misc/sipp/sipp-3.6.1.ebuild b/net-misc/sipp/sipp-3.6.1.ebuild
index 3145570a2b5..bff0d1ab42e 100644
--- a/net-misc/sipp/sipp-3.6.1.ebuild
+++ b/net-misc/sipp/sipp-3.6.1.ebuild
@@ -20,6 +20,7 @@ DEPEND="sys-libs/ncurses:=
net-libs/libpcap
net-libs/libnet:1.1
)
+ sctp? ( net-misc/lksctp-tools )
ssl? ( dev-libs/openssl:= )
"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/
@ 2021-09-17 2:06 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-09-17 2:06 UTC (permalink / raw
To: gentoo-commits
commit: d76e8f371a57dc16eb2365a180da827b450835ed
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 17 02:03:43 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Sep 17 02:03:43 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d76e8f37
net-misc/sipp: fix installation of binary
Closes: https://bugs.gentoo.org/813420
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/sipp/sipp-3.6.0.ebuild | 5 +++--
net-misc/sipp/{sipp-3.6.1.ebuild => sipp-3.6.1-r1.ebuild} | 5 +++--
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/net-misc/sipp/sipp-3.6.0.ebuild b/net-misc/sipp/sipp-3.6.0.ebuild
index 5ffd92882ca..bc7ef82c8b2 100644
--- a/net-misc/sipp/sipp-3.6.0.ebuild
+++ b/net-misc/sipp/sipp-3.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -7,7 +7,7 @@ inherit autotools
DESCRIPTION="A free Open Source test tool / traffic generator for the SIP protocol"
HOMEPAGE="http://sipp.sourceforge.net/ https://github.com/SIPp/sipp/releases"
-SRC_URI="https://github.com/SIPp/sipp/releases/download/v${PV}/${PF}.tar.gz"
+SRC_URI="https://github.com/SIPp/sipp/releases/download/v${PV}/${P}.tar.gz"
LICENSE="GPL-2 ISC"
SLOT="0"
@@ -42,6 +42,7 @@ src_configure() {
src_install() {
default
+
insinto /usr/share/${PN}
use pcap && doins pcap/*.pcap
dodoc CHANGES.md README.md
diff --git a/net-misc/sipp/sipp-3.6.1.ebuild b/net-misc/sipp/sipp-3.6.1-r1.ebuild
similarity index 97%
rename from net-misc/sipp/sipp-3.6.1.ebuild
rename to net-misc/sipp/sipp-3.6.1-r1.ebuild
index bff0d1ab42e..d46f12c2602 100644
--- a/net-misc/sipp/sipp-3.6.1.ebuild
+++ b/net-misc/sipp/sipp-3.6.1-r1.ebuild
@@ -7,7 +7,7 @@ inherit cmake
DESCRIPTION="A free Open Source test tool / traffic generator for the SIP protocol"
HOMEPAGE="http://sipp.sourceforge.net/ https://github.com/SIPp/sipp/releases"
-SRC_URI="https://github.com/SIPp/sipp/releases/download/v${PV}/${PF}.tar.gz"
+SRC_URI="https://github.com/SIPp/sipp/releases/download/v${PV}/${P}.tar.gz"
LICENSE="GPL-2 ISC"
SLOT="0"
@@ -46,7 +46,8 @@ src_configure() {
}
src_install() {
- default
+ cmake_src_install
+
insinto /usr/share/${PN}
use pcap && doins pcap/*.pcap
dodoc CHANGES.md README.md
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/
@ 2023-07-21 6:22 Joonas Niilola
0 siblings, 0 replies; 9+ messages in thread
From: Joonas Niilola @ 2023-07-21 6:22 UTC (permalink / raw
To: gentoo-commits
commit: 11558e10654fc5cbb61e866b9e7bbfe05adbebf3
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Wed Jun 28 07:54:38 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jul 21 06:22:12 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11558e10
net-misc/sipp: Add upstream remote-id.
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-misc/sipp/metadata.xml | 3 +++
1 file changed, 3 insertions(+)
diff --git a/net-misc/sipp/metadata.xml b/net-misc/sipp/metadata.xml
index adc8a22fc56f..7c4abd9bc03d 100644
--- a/net-misc/sipp/metadata.xml
+++ b/net-misc/sipp/metadata.xml
@@ -12,4 +12,7 @@
<use>
<flag name="pcap">Enable functionality to replay RTP data from a pcap file</flag>
</use>
+ <upstream>
+ <remote-id type="github">SIPp/sipp</remote-id>
+ </upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/
@ 2023-07-21 6:22 Joonas Niilola
0 siblings, 0 replies; 9+ messages in thread
From: Joonas Niilola @ 2023-07-21 6:22 UTC (permalink / raw
To: gentoo-commits
commit: 93aaf069c3fb9de0326646f336ce8e5d707fb2bd
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Wed Jun 28 07:55:06 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jul 21 06:22:12 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93aaf069
net-misc/sipp: add 3.7.1
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/31653
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-misc/sipp/Manifest | 1 +
net-misc/sipp/sipp-3.7.1.ebuild | 45 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/net-misc/sipp/Manifest b/net-misc/sipp/Manifest
index 67ff7f47058d..ceb4bd57e7ac 100644
--- a/net-misc/sipp/Manifest
+++ b/net-misc/sipp/Manifest
@@ -1 +1,2 @@
DIST sipp-3.6.1.tar.gz 744407 BLAKE2B a201ecce624c15c51a66c3cb5ac467522755085419c2980b1f76340e7ffca5996516f34d7e52776a8aa0a2170ca2b7301030ecb50272a1c0a8e86aaf18a6de16 SHA512 58504c56ca0c14363fafc5d0598fd93857ef33cc5856f579a225fd0e38238f7d2c409127a18a368e22355cc3912758d4dba07bac7eaa3e8a0d2943ea5fdec602
+DIST sipp-3.7.1.tar.gz 927012 BLAKE2B d79cde44761a22ca5dcc737dead9163056e0dc2504c225d23d834b4ae2bc204b1b87f87753ac662ec59e1a940cf1b4f0c47ff0b427b30b373a3c0ad91a5ad4ae SHA512 4c4c588bb3feebfbc6bad32c1565bb76de7eb433b9b40aa948dfbb63022a9cbadaf6d38cb0826c06593e10cc6a4d328a9bb9c94f885d8f8763432612963db94b
diff --git a/net-misc/sipp/sipp-3.7.1.ebuild b/net-misc/sipp/sipp-3.7.1.ebuild
new file mode 100644
index 000000000000..f34270650432
--- /dev/null
+++ b/net-misc/sipp/sipp-3.7.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A free Open Source test tool / traffic generator for the SIP protocol"
+HOMEPAGE="http://sipp.sourceforge.net/ https://github.com/SIPp/sipp/releases"
+SRC_URI="https://github.com/SIPp/sipp/releases/download/v${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gsl +pcap sctp +ssl"
+
+DEPEND="sys-libs/ncurses:=
+ gsl? ( sci-libs/gsl:= )
+ pcap? (
+ net-libs/libpcap
+ net-libs/libnet:1.1
+ )
+ sctp? ( net-misc/lksctp-tools )
+ ssl? ( dev-libs/openssl:= )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DUSE_GSL=$(usex gsl 1 0)
+ -DUSE_PCAP=$(usex pcap 1 0)
+ -DUSE_SCTP=$(usex sctp 1 0)
+ -DUSE_SSL=$(usex ssl 1 0)
+ )
+
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+
+ insinto /usr/share/${PN}
+ use pcap && doins pcap/*.pcap
+ dodoc CHANGES.md README.md
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/
@ 2023-07-21 6:22 Joonas Niilola
0 siblings, 0 replies; 9+ messages in thread
From: Joonas Niilola @ 2023-07-21 6:22 UTC (permalink / raw
To: gentoo-commits
commit: 5c0501f0fee700bfbfd945bbe7c427e9fd9ec637
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 21 06:22:27 2023 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Jul 21 06:22:27 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c0501f0
net-misc/sipp: update EAPI 7 -> 8
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
net-misc/sipp/sipp-3.7.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/sipp/sipp-3.7.1.ebuild b/net-misc/sipp/sipp-3.7.1.ebuild
index f34270650432..e6bcb60d6522 100644
--- a/net-misc/sipp/sipp-3.7.1.ebuild
+++ b/net-misc/sipp/sipp-3.7.1.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit cmake
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/
@ 2023-07-27 19:42 Andreas Sturmlechner
0 siblings, 0 replies; 9+ messages in thread
From: Andreas Sturmlechner @ 2023-07-27 19:42 UTC (permalink / raw
To: gentoo-commits
commit: 9a3729a4ace773cb89dcbc8edab10a0cec86b48c
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 27 18:52:55 2023 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Thu Jul 27 19:42:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a3729a4
net-misc/sipp: drop 3.6.1-r1
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
net-misc/sipp/Manifest | 1 -
net-misc/sipp/sipp-3.6.1-r1.ebuild | 54 --------------------------------------
2 files changed, 55 deletions(-)
diff --git a/net-misc/sipp/Manifest b/net-misc/sipp/Manifest
index ceb4bd57e7ac..8d64804b8f05 100644
--- a/net-misc/sipp/Manifest
+++ b/net-misc/sipp/Manifest
@@ -1,2 +1 @@
-DIST sipp-3.6.1.tar.gz 744407 BLAKE2B a201ecce624c15c51a66c3cb5ac467522755085419c2980b1f76340e7ffca5996516f34d7e52776a8aa0a2170ca2b7301030ecb50272a1c0a8e86aaf18a6de16 SHA512 58504c56ca0c14363fafc5d0598fd93857ef33cc5856f579a225fd0e38238f7d2c409127a18a368e22355cc3912758d4dba07bac7eaa3e8a0d2943ea5fdec602
DIST sipp-3.7.1.tar.gz 927012 BLAKE2B d79cde44761a22ca5dcc737dead9163056e0dc2504c225d23d834b4ae2bc204b1b87f87753ac662ec59e1a940cf1b4f0c47ff0b427b30b373a3c0ad91a5ad4ae SHA512 4c4c588bb3feebfbc6bad32c1565bb76de7eb433b9b40aa948dfbb63022a9cbadaf6d38cb0826c06593e10cc6a4d328a9bb9c94f885d8f8763432612963db94b
diff --git a/net-misc/sipp/sipp-3.6.1-r1.ebuild b/net-misc/sipp/sipp-3.6.1-r1.ebuild
deleted file mode 100644
index d46f12c26028..000000000000
--- a/net-misc/sipp/sipp-3.6.1-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A free Open Source test tool / traffic generator for the SIP protocol"
-HOMEPAGE="http://sipp.sourceforge.net/ https://github.com/SIPp/sipp/releases"
-SRC_URI="https://github.com/SIPp/sipp/releases/download/v${PV}/${P}.tar.gz"
-
-LICENSE="GPL-2 ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gsl +pcap sctp +ssl"
-
-DEPEND="sys-libs/ncurses:=
- gsl? ( sci-libs/gsl:= )
- pcap? (
- net-libs/libpcap
- net-libs/libnet:1.1
- )
- sctp? ( net-misc/lksctp-tools )
- ssl? ( dev-libs/openssl:= )
-"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
- default
-
- # version.h is in ${S}, and needs to be in ${S}/include for cmake to work.
- ln -s ../version.h "${S}/include/" || die "Error creating version.h symlink"
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- -DUSE_GSL=$(usex gsl 1 0)
- -DUSE_PCAP=$(usex pcap 1 0)
- -DUSE_SCTP=$(usex sctp 1 0)
- -DUSE_SSL=$(usex ssl 1 0)
- )
-
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
-
- insinto /usr/share/${PN}
- use pcap && doins pcap/*.pcap
- dodoc CHANGES.md README.md
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/
@ 2024-10-04 8:13 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2024-10-04 8:13 UTC (permalink / raw
To: gentoo-commits
commit: c1b3b35d487a2f1793dd42141ee7ce462a1209ad
Author: Jaco Kroon <jaco <AT> uls <DOT> co <DOT> za>
AuthorDate: Sat Sep 14 13:35:52 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 4 08:12:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1b3b35d
net-misc/sipp: add 3.7.3
Only ebuild change is references to HOMEPAGE.
Signed-off-by: Jaco Kroon <jaco <AT> uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/38604
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/sipp/Manifest | 1 +
net-misc/sipp/sipp-3.7.3.ebuild | 45 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/net-misc/sipp/Manifest b/net-misc/sipp/Manifest
index 8d64804b8f05..391f4894444c 100644
--- a/net-misc/sipp/Manifest
+++ b/net-misc/sipp/Manifest
@@ -1 +1,2 @@
DIST sipp-3.7.1.tar.gz 927012 BLAKE2B d79cde44761a22ca5dcc737dead9163056e0dc2504c225d23d834b4ae2bc204b1b87f87753ac662ec59e1a940cf1b4f0c47ff0b427b30b373a3c0ad91a5ad4ae SHA512 4c4c588bb3feebfbc6bad32c1565bb76de7eb433b9b40aa948dfbb63022a9cbadaf6d38cb0826c06593e10cc6a4d328a9bb9c94f885d8f8763432612963db94b
+DIST sipp-3.7.3.tar.gz 932370 BLAKE2B 8a7cbafe89e6bfbeba16f65f173d18d4239848fd33ecf9670ff36800020e88dbf7a4d49ff35a87cb5b87c1c15d8b85ccdfc6c916982e4a892172d349ec551d88 SHA512 a04f8d02bd19068d5a6895e1c800f21ee7dc4355f9d7800579a7961c9388ad74144994a63a8fdfdc5b0fca09f7fd6ab004e14e5067e0ff9a79037194661abada
diff --git a/net-misc/sipp/sipp-3.7.3.ebuild b/net-misc/sipp/sipp-3.7.3.ebuild
new file mode 100644
index 000000000000..de61af5d76c4
--- /dev/null
+++ b/net-misc/sipp/sipp-3.7.3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="A free Open Source test tool / traffic generator for the SIP protocol"
+HOMEPAGE="https://github.com/SIPp/sipp"
+SRC_URI="https://github.com/SIPp/sipp/releases/download/v${PV}/${P}.tar.gz"
+
+LICENSE="GPL-2 ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gsl +pcap sctp +ssl"
+
+DEPEND="sys-libs/ncurses:=
+ gsl? ( sci-libs/gsl:= )
+ pcap? (
+ net-libs/libpcap
+ net-libs/libnet:1.1
+ )
+ sctp? ( net-misc/lksctp-tools )
+ ssl? ( dev-libs/openssl:= )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+ local mycmakeargs=(
+ -DUSE_GSL=$(usex gsl 1 0)
+ -DUSE_PCAP=$(usex pcap 1 0)
+ -DUSE_SCTP=$(usex sctp 1 0)
+ -DUSE_SSL=$(usex ssl 1 0)
+ )
+
+ cmake_src_configure
+}
+
+src_install() {
+ cmake_src_install
+
+ insinto /usr/share/${PN}
+ use pcap && doins pcap/*.pcap
+ dodoc CHANGES.md README.md
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-10-04 8:13 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-27 19:42 [gentoo-commits] repo/gentoo:master commit in: net-misc/sipp/ Andreas Sturmlechner
-- strict thread matches above, loose matches on Subject: below --
2024-10-04 8:13 Sam James
2023-07-21 6:22 Joonas Niilola
2023-07-21 6:22 Joonas Niilola
2023-07-21 6:22 Joonas Niilola
2021-09-17 2:06 Sam James
2021-06-29 16:35 Sam James
2021-02-22 7:25 Sam James
2019-12-22 16:59 Joonas Niilola
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox