diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-04-23 23:22:48 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-04-24 21:38:18 +0200 |
commit | dc45d2b9aa251039008c54a8190c0f5937512283 (patch) | |
tree | dc419df37668502312ff778df09d9f0f1d7251d3 /net-voip | |
parent | net-voip/telepathy-gabble: Rollover ~arm64 keyword from 0.18.4 to r1 (diff) | |
download | gentoo-dc45d2b9aa251039008c54a8190c0f5937512283.tar.gz gentoo-dc45d2b9aa251039008c54a8190c0f5937512283.tar.bz2 gentoo-dc45d2b9aa251039008c54a8190c0f5937512283.zip |
net-voip/telepathy-salut: Drop 0.8.1-r1
De-stabilising ia64 without stable revdeps.
Closes: https://bugs.gentoo.org/674978
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-voip')
-rw-r--r-- | net-voip/telepathy-salut/telepathy-salut-0.8.1-r1.ebuild | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/net-voip/telepathy-salut/telepathy-salut-0.8.1-r1.ebuild b/net-voip/telepathy-salut/telepathy-salut-0.8.1-r1.ebuild deleted file mode 100644 index 497b7f32bbb6..000000000000 --- a/net-voip/telepathy-salut/telepathy-salut-0.8.1-r1.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -PYTHON_COMPAT=( python2_7 ) - -inherit python-any-r1 - -DESCRIPTION="A link-local XMPP connection manager for Telepathy" -HOMEPAGE="https://telepathy.freedesktop.org/" -SRC_URI="https://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 ~arm ia64 ppc ~ppc64 sparc x86 ~x86-linux" -IUSE="gnutls test" - -RDEPEND=" - >=dev-libs/dbus-glib-0.61 - dev-libs/libxml2 - >=dev-libs/glib-2.28:2 - >=sys-apps/dbus-1.1.0 - >=net-libs/telepathy-glib-0.17.1 - >=net-dns/avahi-0.6.22[dbus] - net-libs/libsoup:2.4 - sys-apps/util-linux - dev-db/sqlite:3 - gnutls? ( >=net-libs/gnutls-2.10.2 ) - !gnutls? ( >=dev-libs/openssl-0.9.8g:0[-bindist] ) -" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - dev-libs/libxslt - virtual/pkgconfig - test? ( - >=dev-libs/check-0.9.4 - net-libs/libgsasl - || ( - $(python_gen_any_dep 'dev-python/twisted[${PYTHON_USEDEP}]') - $(python_gen_any_dep 'dev-python/twisted-words[${PYTHON_USEDEP}]') - ) - ) -" -# FIXME: needs xmppstream python module -# >=net-dns/avahi-0.6.22[python] - -PATCHES=( - # Fix uninitialized variable, upstream bug #37701 - "${FILESDIR}"/${PN}-0.5.0-uninitialized.patch -) - -python_check_deps() { - if use test ; then - has_version "dev-python/twisted[${PYTHON_USEDEP}]" \ - || has_version "dev-python/twisted-words[${PYTHON_USEDEP}]" - fi -} - -pkg_setup() { - python-any-r1_pkg_setup -} - -src_configure() { - econf \ - --disable-coding-style-checks \ - --disable-plugins \ - --disable-Werror \ - --disable-static \ - --disable-avahi-tests \ - --docdir=/usr/share/doc/${PF} \ - --with-tls=$(usex gnutls gnutls openssl) - #$(use_enable test avahi-tests) -} - -src_install() { - MAKEOPTS+=" -j1" default # bug 413581 - find "${D}" -name '*.la' -delete || die -} |