diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2019-12-17 16:57:22 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2019-12-17 16:57:22 +0100 |
commit | 8939349807b687242d56c85fcfa397e3de8ebb1c (patch) | |
tree | ea73508478a82d59e32e249259b2f22fdf0e57da /net-im/libcommuni | |
parent | net-misc/ntpclient: drop old version (diff) | |
download | gentoo-8939349807b687242d56c85fcfa397e3de8ebb1c.tar.gz gentoo-8939349807b687242d56c85fcfa397e3de8ebb1c.tar.bz2 gentoo-8939349807b687242d56c85fcfa397e3de8ebb1c.zip |
net-im/libcommuni: drop old version
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'net-im/libcommuni')
-rw-r--r-- | net-im/libcommuni/Manifest | 1 | ||||
-rw-r--r-- | net-im/libcommuni/libcommuni-3.5.0_p20180116.ebuild | 77 |
2 files changed, 0 insertions, 78 deletions
diff --git a/net-im/libcommuni/Manifest b/net-im/libcommuni/Manifest index 6d372f546817..e249fb6d677d 100644 --- a/net-im/libcommuni/Manifest +++ b/net-im/libcommuni/Manifest @@ -1,2 +1 @@ -DIST libcommuni-3.5.0_p20180116.tar.gz 471286 BLAKE2B 9f89a5eea2444c207b54f6b820c7cef89ff2e578d34ad751fdbfe558af2bcf0e52238ef63b244fb321baa7716c0119ca084c547cc0161a08b46af4c9d604dd0e SHA512 f7ce9c92acbd67b3d75b9b7fc1cef55796a3d44294024da591c7b0c21fc065ec484dbc6a4c83af96fcb6fd6e725a7b6ed4219bd09e2aa0de303b82d64741efba DIST libcommuni-3.5.0_p20190110.tar.gz 471278 BLAKE2B 2836a5ae01b08aac624c899a40712a9c452fc5b8f242906063936e48bd59306758cc70ea07beaf8488d228d6029c8128e343bbd59b1bfeff9bb2dccda0153b59 SHA512 9da065ef6b0589f7406d8c66b46f9f8d3d16325b59b7281153233b1a8d2bf98cdd35ee4e416237ac760dfc07531578aa7432226932976b9bbf36209bed5db72c diff --git a/net-im/libcommuni/libcommuni-3.5.0_p20180116.ebuild b/net-im/libcommuni/libcommuni-3.5.0_p20180116.ebuild deleted file mode 100644 index a43946947bff..000000000000 --- a/net-im/libcommuni/libcommuni-3.5.0_p20180116.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -MY_PV="d3e388de9a146faad3277b46e480b0f1415f9a24" - -inherit qmake-utils - -DESCRIPTION="A cross-platform IRC framework written with Qt" -HOMEPAGE="http://communi.github.io/" -SRC_URI="https://github.com/communi/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="qml test +uchardet" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-qt/qtcore:5 - dev-qt/qtdeclarative:5 - uchardet? ( app-i18n/uchardet ) - !uchardet? ( dev-libs/icu:= ) - " - -DEPEND=" - ${RDEPEND} - test? ( dev-qt/qttest:5 ) -" - -S="${WORKDIR}/${PN}-${MY_PV}" - -src_prepare() { - default - - # Currently the test tst_IrcLagTimer fails, so disabling - # See: https://github.com/communi/libcommuni/issues/63 - sed -e '/irclagtimer/d' -i tests/auto/auto.pro || die -} - -src_configure() { - local myqmakeargs=( libcommuni.pro - # Disables compile run-time benchmarks, as they don't make any sense - -config no_benchmarks - # Disables examples, as no new files are installed - -config no_examples - # Is needed for fixing the QA Notice: The following files contain insecure RUNPATHs - -config no_rpath - # Compile libcommuni always in Release mode, as Debug seems to do nothing - -config release - # Don't silence all compile messages - -config verbose - -config $(usex qml '' 'no_')install_imports - -config $(usex qml '' 'no_')install_qml - -config $(usex test '' 'no_')tests - -config $(usex uchardet 'no_' '')icu - -config $(usex uchardet '' 'no_')uchardet ) - - eqmake5 "${myqmakeargs[@]}" -} - -src_test() { - # This is a hack to delete the existing LD_LIBRARY_PATH and set a new one, - # otherwise a test will fail, because it uses the system installed lib instead of the new compiled lib. - # The test will fail, when libcommuni is emerged with USE="uchardet" and - # libcommuni is already installed with USE="-uchardat", or the other way around. - find "${S}" -type f -name 'target_wrapper.sh' -exec sed -i -e "/.*LD_LIBRARY_PATH.*/d" {} \; || die - local -x LD_LIBRARY_PATH="${S}/lib" - - default -} - -src_install() { - emake install INSTALL_ROOT="${D}" - einstalldocs -} |