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-libs/qxmpp/
Date: Sat, 28 Jan 2023 11:49:22
Message-Id: 1674906525.196a1e9d3400829c91d03d6777c5b5aab16e34fd.asturm@gentoo
1 commit: 196a1e9d3400829c91d03d6777c5b5aab16e34fd
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 27 21:01:54 2023 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 28 11:48:45 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=196a1e9d
7
8 net-libs/qxmpp: drop 1.2.0
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11
12 net-libs/qxmpp/Manifest | 1 -
13 net-libs/qxmpp/qxmpp-1.2.0.ebuild | 59 ---------------------------------------
14 2 files changed, 60 deletions(-)
15
16 diff --git a/net-libs/qxmpp/Manifest b/net-libs/qxmpp/Manifest
17 index 44eeca3bc7ce..1f55c5675469 100644
18 --- a/net-libs/qxmpp/Manifest
19 +++ b/net-libs/qxmpp/Manifest
20 @@ -1,2 +1 @@
21 -DIST qxmpp-1.2.0.tar.gz 310801 BLAKE2B a3d1c708fe33e6ecd226e867fc030c6cddb5009c90db46544a0081e1198f69b609239304f56aec00c7b399e7f74fa9bed82eb38db3439e092719a7a68b440a14 SHA512 9b9541dd2ffc689877969bdd1063e7ab21761e5feb7bf911acba3b0a0d953199b8bc08a1ad8c2031b0e135af7a127cbbc108bb3e8dbf1b7712ab8dc8f4cbd371
22 DIST qxmpp-1.4.0.tar.gz 313356 BLAKE2B a3a5c5cf3b16c319a6eddb3808f22af946040945eb8e66a641fe3117217b04eaf4e2b88dab8fa9cd2a3034d54884e1fa3563b0e775660645a5bdd6045469f9a5 SHA512 5a0cb72899314e47846b8b47340738df20a8d198c2db8cfe38c2cc31615166e9d86c6aaf6931be16078b2f9decca2d767497ad32e1d6dd0f6af888406c33fee9
23
24 diff --git a/net-libs/qxmpp/qxmpp-1.2.0.ebuild b/net-libs/qxmpp/qxmpp-1.2.0.ebuild
25 deleted file mode 100644
26 index ee138b7ec58f..000000000000
27 --- a/net-libs/qxmpp/qxmpp-1.2.0.ebuild
28 +++ /dev/null
29 @@ -1,59 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -inherit cmake
36 -
37 -DESCRIPTION="A cross-platform C++ XMPP client library based on the Qt framework"
38 -HOMEPAGE="https://github.com/qxmpp-project/qxmpp/"
39 -SRC_URI="https://github.com/${PN}-project/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 -
41 -LICENSE="LGPL-2.1"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86"
44 -IUSE="debug doc opus +speex test theora vpx"
45 -RESTRICT="!test? ( test )"
46 -
47 -RDEPEND="
48 - dev-qt/qtcore:5
49 - dev-qt/qtnetwork:5[ssl]
50 - dev-qt/qtxml:5
51 - opus? ( media-libs/opus )
52 - speex? ( media-libs/speex )
53 - theora? ( media-libs/libtheora )
54 - vpx? ( media-libs/libvpx:= )
55 -"
56 -DEPEND="${RDEPEND}
57 - test? ( dev-qt/qttest:5 )
58 -"
59 -BDEPEND="
60 - doc? ( app-doc/doxygen )
61 -"
62 -
63 -src_prepare() {
64 - # requires network connection, bug #623708
65 - sed \
66 - -e "/qxmppiceconnection/d" \
67 - -e "/qxmppserver/d" \
68 - -e "/qxmpptransfermanager/d" \
69 - -i tests/CMakeLists.txt \
70 - || die "failed to drop certain network tests"
71 -
72 - cmake_src_prepare
73 -}
74 -
75 -src_configure() {
76 - local mycmakeargs=(
77 - -DBUILD_DOCUMENTATION=$(usex doc)
78 - -DBUILD_EXAMPLES=OFF
79 - -DBUILD_TESTS=$(usex test)
80 - -DBUILD_INTERNAL_TESTS=$(usex test)
81 - -DWITH_OPUS=$(usex opus)
82 - -DWITH_SPEEX=$(usex speex)
83 - -DWITH_THEORA=$(usex theora)
84 - -DWITH_VPX=$(usex vpx)
85 - )
86 -
87 - cmake_src_configure
88 -}