diff options
author | Matoro Mahri <matoro@users.noreply.github.com> | 2023-03-22 17:48:00 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-04-07 03:30:25 +0100 |
commit | a02d2e6647d0ba499056d5d21f2f99b6c522245b (patch) | |
tree | f7fbd140bc769940e7e74207e65325923163fddb /net-libs/srt | |
parent | dev-python/sqlalchemy: Stabilize 1.4.47 sparc, #903910 (diff) | |
download | gentoo-a02d2e6647d0ba499056d5d21f2f99b6c522245b.tar.gz gentoo-a02d2e6647d0ba499056d5d21f2f99b6c522245b.tar.bz2 gentoo-a02d2e6647d0ba499056d5d21f2f99b6c522245b.zip |
net-libs/srt: add 1.5.1, wire up tests
These currently DO NOT PASS on big-endian, see https://github.com/Haivision/srt/issues/2697
Bug: https://bugs.gentoo.org/900240
Signed-off-by: Matoro Mahri <matoro@users.noreply.github.com>
Closes: https://github.com/gentoo/gentoo/pull/30307
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/srt')
-rw-r--r-- | net-libs/srt/Manifest | 1 | ||||
-rw-r--r-- | net-libs/srt/srt-1.5.1.ebuild | 55 |
2 files changed, 56 insertions, 0 deletions
diff --git a/net-libs/srt/Manifest b/net-libs/srt/Manifest index 5bbb8b68dc67..1a37b93fb5a5 100644 --- a/net-libs/srt/Manifest +++ b/net-libs/srt/Manifest @@ -1 +1,2 @@ DIST srt-1.4.3.tar.gz 1602671 BLAKE2B ed4ec46cab887461f6dccfc2d695fe78a3782f42f4ef6c3ac5ba6e2ea068a7943eb8079c0a448f35864c575009d556363bcfe7d815d0f47a368001a3df478837 SHA512 5cd15fd0c7b324226ab096c1b6c6f81b4ce5600617e1bd2c38985f18d7d551c9a4a09b1e34c7a705c92ae54bb57c5d736ca7eff6e4992e67666aa167e0da855f +DIST srt-1.5.1.tar.gz 1694199 BLAKE2B 4c215ef936100b02b3a5a9aab6e9a715ecdb728517b0648e91f2144bb34a34cb1573c4e6905441a366ea281c9410c2d00d5ebc64144f327f7a115d81038942af SHA512 f3aa1f7773540e2dd31cd19b124eec3c3d830f59c08d953cae01e129a58db7e639bdf94c8a5a678435ae9a1d2402e2c77196fc9c4e75b42aa37d8eafcc16f436 diff --git a/net-libs/srt/srt-1.5.1.ebuild b/net-libs/srt/srt-1.5.1.ebuild new file mode 100644 index 000000000000..8449fb1cbaa4 --- /dev/null +++ b/net-libs/srt/srt-1.5.1.ebuild @@ -0,0 +1,55 @@ +# Copyright 2018-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-multilib + +DESCRIPTION="Secure Reliable Transport (SRT) library and tools" +HOMEPAGE="https://github.com/Haivision/srt" + +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://github.com/Haivision/${PN}.git" + inherit git-r3 +else + SRC_URI="https://github.com/Haivision/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv -sparc ~x86 ~ppc-macos ~x64-macos" +fi + +LICENSE="MPL-2.0" +SLOT="0/$(ver_cut 1-2)" +IUSE="gnutls test" +RESTRICT="!test? ( test )" + +RDEPEND=" + gnutls? ( + dev-libs/nettle:0=[${MULTILIB_USEDEP}] + net-libs/gnutls:0=[${MULTILIB_USEDEP}] + ) + !gnutls? ( + dev-libs/openssl:0=[${MULTILIB_USEDEP}] + ) +" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig + test? ( >=dev-cpp/gtest-1.8[${MULTILIB_USEDEP}] )" + +src_configure() { + local mycmakeargs=( + -DENABLE_STATIC=OFF + -DENABLE_UNITTESTS=$(usex test) + -DENABLE_TESTING=$(usex test) + -DUSE_GNUTLS=$(usex gnutls) + ) + cmake-multilib_src_configure +} + +multilib_src_test() { + cmake_src_test -j1 +} + +multilib_src_install() { + cmake_src_install + # remove old upstream temporary compatibility pc + rm "${ED}/usr/$(get_libdir)/pkgconfig/haisrt.pc" || die +} |