From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6273C1396D2 for ; Sun, 20 Aug 2017 22:47:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76CF31FC041; Sun, 20 Aug 2017 22:47:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3D7C21FC002 for ; Sun, 20 Aug 2017 22:47:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6D78E341A4B for ; Sun, 20 Aug 2017 22:47:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11B427CD3 for ; Sun, 20 Aug 2017 22:47:49 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1503269261.7bed5b288edd71eb9a4b761d3d2539383e3d233d.eva@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-voip/telepathy-salut/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-voip/telepathy-salut/telepathy-salut-0.8.1-r1.ebuild X-VCS-Directories: net-voip/telepathy-salut/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 7bed5b288edd71eb9a4b761d3d2539383e3d233d X-VCS-Branch: master Date: Sun, 20 Aug 2017 22:47:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 805f8023-7f60-42f5-bdac-44739f40f9b1 X-Archives-Hash: a54a5f47d269d6a0855fa48469f312b2 commit: 7bed5b288edd71eb9a4b761d3d2539383e3d233d Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Aug 20 21:54:36 2017 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Aug 20 22:47:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bed5b28 net-voip/telepathy-salut: port to unsplit twisted dependencies, bug #605084 Bump to EAPI=6. Fix python-any-r1 usage for unittests. Update homepage. Add missing sqlite:3 dependency. Package-Manager: Portage-2.3.8, Repoman-2.3.3 .../telepathy-salut-0.8.1-r1.ebuild | 77 ++++++++++++++++++++++ 1 file changed, 77 insertions(+) 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 new file mode 100644 index 00000000000..f5766fe7ad3 --- /dev/null +++ b/net-voip/telepathy-salut/telepathy-salut-0.8.1-r1.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2017 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() { + use test \ + && { has_version "dev-python/twisted[${PYTHON_USEDEP}]" \ + || has_version "dev-python/twisted-words[${PYTHON_USEDEP}]"; } +} + +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 +}