diff options
author | Sam James <sam@gentoo.org> | 2022-12-21 21:39:12 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-21 22:25:07 +0000 |
commit | 510610493a640df9fe03764e3ad384f8736f2b6a (patch) | |
tree | 5a07b7beeb656fd321537748d6388236e1455ade /net-libs/loudmouth | |
parent | net-analyzer/bing: drop 1.1.3-r2 (diff) | |
download | gentoo-510610493a640df9fe03764e3ad384f8736f2b6a.tar.gz gentoo-510610493a640df9fe03764e3ad384f8736f2b6a.tar.bz2 gentoo-510610493a640df9fe03764e3ad384f8736f2b6a.zip |
net-libs/loudmouth: drop 1.5.3-r3
Bug: https://bugs.gentoo.org/886765
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/loudmouth')
-rw-r--r-- | net-libs/loudmouth/Manifest | 1 | ||||
-rw-r--r-- | net-libs/loudmouth/files/loudmouth-1.5.3-gcc7.patch | 25 | ||||
-rw-r--r-- | net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild | 55 |
3 files changed, 0 insertions, 81 deletions
diff --git a/net-libs/loudmouth/Manifest b/net-libs/loudmouth/Manifest index 5a762f8d133f..06f7a4db47cf 100644 --- a/net-libs/loudmouth/Manifest +++ b/net-libs/loudmouth/Manifest @@ -1,2 +1 @@ -DIST loudmouth-1.5.3.tar.bz2 375974 BLAKE2B c9707fe18560104456a624a61437240a16bb6bbaf544cdf775f6d6c64fdbeb6eb8f7042eb13fcdeb36c89bb8d9522c2eba02c24987757c0f0ac8748d92a2b166 SHA512 ab6b16b4e644b69cdb7d8df1753d1bb5b43c2f1e76944e639339169b332e1b5c6a4246053c5b8a579ee9b53c845cef610b0040dfdffeb857180b6bab71adfcce DIST loudmouth-1.5.4.tar.bz2 361323 BLAKE2B 1d8453625262e4f9dc8d603619b71cac073831462164a10a92a5118c212293ae4ad9a0ca276b07b7919a0aebce633b4afaabb015ecf4b33e7c641a4273edc64a SHA512 49a08f0130b9ee56f07586d244504c81242723865a136b03e1049f32b1aa1e6c49e9b76b38f0cfb812ef4c66f73b7d83914a58e9a93e0496207e06c2b5efa9d8 diff --git a/net-libs/loudmouth/files/loudmouth-1.5.3-gcc7.patch b/net-libs/loudmouth/files/loudmouth-1.5.3-gcc7.patch deleted file mode 100644 index 83e0aea69d74..000000000000 --- a/net-libs/loudmouth/files/loudmouth-1.5.3-gcc7.patch +++ /dev/null @@ -1,25 +0,0 @@ -Bug: https://bugs.gentoo.org/618330 -Upstream commit: https://github.com/mcabber/loudmouth/commit/01fdfa0f5d1b8502b92d2e78d757e9b19661d054 - -From 01fdfa0f5d1b8502b92d2e78d757e9b19661d054 Mon Sep 17 00:00:00 2001 -From: tmp170422 <tmp131110@ya.ru> -Date: Sun, 14 May 2017 12:18:32 +0300 -Subject: [PATCH] An apparent typo - ---- - loudmouth/lm-sasl.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/loudmouth/lm-sasl.c b/loudmouth/lm-sasl.c -index 00cf9b7..38cd88c 100644 ---- a/loudmouth/lm-sasl.c -+++ b/loudmouth/lm-sasl.c -@@ -529,7 +529,7 @@ sasl_md5_prepare_response (LmSASL *sasl, GHashTable *challenge) - } - - nonce = g_hash_table_lookup (challenge, "nonce"); -- if (nonce == NULL || nonce == '\0') { -+ if (nonce == NULL || nonce[0] == '\0') { - g_log (LM_LOG_DOMAIN, LM_LOG_LEVEL_SASL, - "%s: server didn't provide a nonce in the challenge", - G_STRFUNC); diff --git a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild b/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild deleted file mode 100644 index 13e7508b5b20..000000000000 --- a/net-libs/loudmouth/loudmouth-1.5.3-r3.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Lightweight C Jabber library" -HOMEPAGE="https://mcabber.com" -SRC_URI="https://mcabber.com/files/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ppc ppc64 ~riscv sparc x86 ~ppc-macos" - -IUSE="asyncns ssl openssl static-libs test" -RESTRICT="!test? ( test )" - -# Automagic libidn dependency -RDEPEND=" - >=dev-libs/glib-2.16:2 - net-dns/libidn:= - ssl? ( - !openssl? ( >=net-libs/gnutls-1.4.0:0= ) - openssl? ( dev-libs/openssl:0= ) - ) - asyncns? ( >=net-libs/libasyncns-0.3 ) -" -DEPEND="${RDEPEND} - dev-util/glib-utils - dev-util/gtk-doc-am - test? ( dev-libs/check ) - virtual/pkgconfig -" - -PATCHES=( - "${FILESDIR}"/${P}-gcc7.patch -) - -src_configure() { - local myconf - - if use ssl; then - if ! use openssl; then - myconf="${myconf} --with-ssl=gnutls" - else - myconf="${myconf} --with-ssl=openssl" - fi - else - myconf="${myconf} --with-ssl=no" - fi - - econf \ - $(use_enable static-libs static) \ - $(use_with asyncns) \ - ${myconf} -} |