Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/libcommuni/
Date: Tue, 02 Feb 2021 21:27:54
Message-Id: 1612301261.cc2f86cfa38ebed0a2c7d08620c32b107978f56f.conikost@gentoo
1 commit: cc2f86cfa38ebed0a2c7d08620c32b107978f56f
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 2 21:26:42 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 2 21:27:41 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc2f86cf
7
8 net-im/libcommuni: drop old version
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 net-im/libcommuni/Manifest | 1 -
14 .../libcommuni/libcommuni-3.5.0_p20200711.ebuild | 79 ----------------------
15 2 files changed, 80 deletions(-)
16
17 diff --git a/net-im/libcommuni/Manifest b/net-im/libcommuni/Manifest
18 index 657c5e33d47..86cab5b573b 100644
19 --- a/net-im/libcommuni/Manifest
20 +++ b/net-im/libcommuni/Manifest
21 @@ -1,2 +1 @@
22 -DIST libcommuni-3.5.0_p20200711.tar.gz 471839 BLAKE2B 37a02c473496a0fe9394a8b019678afa96b07b9272556fd538d42d9ec296b34ad4c76b3110ff96732bccbed59f2faeedf80bd7782e7a6e395252c6430cb88fa7 SHA512 578e2f70bdfa0e62eb3acac4e8deb2f6f0c1cd5f0a5e559dae79d2a808b27d3cf63ede146a65026e156d988097a5b7903793acadcd7e9ac567f65c59e6738ed3
23 DIST libcommuni-3.6.0.tar.gz 472634 BLAKE2B 0d3d68e27f75cd59ebd61532261e2d3d2c0c2d61d6e08e5b4ed2b21bbf75572f4ce1763fbc4f66c8d5f7c8f9859240ddff5daceeb548d82e2efe936a265031b7 SHA512 cf872d0cdc281a452129a05f5a903eeec3661a4d0d56bdc61bdf95ea969c7b1bcb68534d3d8999fb85ef2b81f17c067b5cd3437351d4635efae3c714567518c0
24
25 diff --git a/net-im/libcommuni/libcommuni-3.5.0_p20200711.ebuild b/net-im/libcommuni/libcommuni-3.5.0_p20200711.ebuild
26 deleted file mode 100644
27 index a631f6b8c42..00000000000
28 --- a/net-im/libcommuni/libcommuni-3.5.0_p20200711.ebuild
29 +++ /dev/null
30 @@ -1,79 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -EGIT_COMMIT="85fc0d9d8659269b00499975d184d75e67f63a9f"
37 -
38 -inherit qmake-utils
39 -
40 -DESCRIPTION="A cross-platform IRC framework written with Qt"
41 -HOMEPAGE="https://communi.github.io/"
42 -SRC_URI="https://github.com/communi/${PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="BSD"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE="examples qml test +uchardet"
48 -RESTRICT="!test? ( test )"
49 -
50 -RDEPEND="
51 - dev-qt/qtcore:5
52 - dev-qt/qtdeclarative:5
53 - examples? ( || (
54 - dev-qt/qtgui:5[X(-)]
55 - dev-qt/qtgui:5[xcb(-)]
56 - ) )
57 - uchardet? ( app-i18n/uchardet )
58 - !uchardet? ( dev-libs/icu:= )
59 -"
60 -
61 -DEPEND="
62 - ${RDEPEND}
63 - test? ( dev-qt/qttest:5 )
64 -"
65 -
66 -S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
67 -
68 -src_configure() {
69 - local myqmakeargs=( libcommuni.pro
70 - # Disables compile run-time benchmarks, as they don't make any sense
71 - -config no_benchmarks
72 - # Is needed for fixing the QA Notice: The following files contain insecure RUNPATHs
73 - -config no_rpath
74 - # Compile libcommuni always in Release mode, as Debug seems to do nothing
75 - -config release
76 - # Don't silence all compile messages
77 - -config verbose
78 - -config $(usex examples '' 'no_')examples
79 - -config $(usex qml '' 'no_')qml
80 - -config $(usex test '' 'no_')tests
81 - -config $(usex uchardet 'no_' '')icu
82 - -config $(usex uchardet '' 'no_')uchardet )
83 -
84 - eqmake5 "${myqmakeargs[@]}"
85 -}
86 -
87 -src_test() {
88 - # This is a hack to delete the existing LD_LIBRARY_PATH and set a new one,
89 - # otherwise a test will fail, because it uses the system installed lib instead of the new compiled lib.
90 - # The test will fail, when libcommuni is emerged with USE="uchardet" and
91 - # libcommuni is already installed with USE="-uchardat", or the other way around.
92 - find "${S}" -type f -name 'target_wrapper.sh' -exec sed -i -e "/.*LD_LIBRARY_PATH.*/d" {} \; || die
93 - local -x LD_LIBRARY_PATH="${S}/lib"
94 -
95 - default
96 -}
97 -
98 -src_install() {
99 - emake install INSTALL_ROOT="${D}"
100 -
101 - if use examples; then
102 - local examples=( "bot" "client" "minimal" "qmlbot" "quick" )
103 - for example in ${examples[@]}; do
104 - newbin examples/"${example}"/"${example}" libcommuni."${example}"
105 - done
106 - fi
107 -
108 - einstalldocs
109 -}