pidgin/pidgin

Remove _xmppconnect support
release-2.x.y
2022-04-27, Gary Kramlich
13cdb7956bdc
Remove _xmppconnect support

It has always been vulnerable to MITM attacks when it is not used with DNSSEC,
and has been removed from XEP-0156 because of that. We have been issued
CVE-2022-26491 for this issue.

More discussion can be found at
https://mail.jabber.org/pipermail/standards/2022-February/038759.html.

Testing Done:
Compiled

Reviewed at https://reviews.imfreedom.org/r/1357/
environment:
- DOCS_BUILD_IMAGE=pidgin/2.x.y-builders:debian-bookworm-amd64
tasks:
clean:
type: convey/clean
files:
- pidgin2-docs
docs-build:
type: docker/run
image: ${DOCS_BUILD_IMAGE}
workdir: ${CONVEY_WORKSPACE}
script:
- set -ex
- ./autogen.sh --disable-gevolution
- make -s -j$(nproc) docs
docs-clean:
type: convey/clean
files:
- pidgin2-docs
docs-export:
type: docker/export
files:
- doc/html:pidgin2-docs
import:
type: docker/import
files: .:.
plans:
clean:
stages:
- tasks: [clean]
docs:
stages:
- tasks: [docs-clean, import, docs-build, docs-export]