From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BE46D139BC9 for ; Sun, 20 Sep 2015 17:35:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D67AA21C04C; Sun, 20 Sep 2015 17:35:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0B4DC21C04C for ; Sun, 20 Sep 2015 17:35:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 41D073407D7 for ; Sun, 20 Sep 2015 17:35:22 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA191203 for ; Sun, 20 Sep 2015 17:35:19 +0000 (UTC) From: "Julian Ospald" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julian Ospald" Message-ID: <1442770501.a6861bc62c00370af922fa1702366443ff9130d5.hasufell@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-sipsimple/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-sipsimple/python-sipsimple-2.5.1-r1.ebuild X-VCS-Directories: dev-python/python-sipsimple/ X-VCS-Committer: hasufell X-VCS-Committer-Name: Julian Ospald X-VCS-Revision: a6861bc62c00370af922fa1702366443ff9130d5 X-VCS-Branch: master Date: Sun, 20 Sep 2015 17:35:19 +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: b468be5d-8d5e-4176-a56b-11144d47f1bb X-Archives-Hash: 4dbf65d5b82011b2f267c2b34f549275 commit: a6861bc62c00370af922fa1702366443ff9130d5 Author: Julian Ospald gentoo org> AuthorDate: Sun Sep 20 17:19:18 2015 +0000 Commit: Julian Ospald gentoo org> CommitDate: Sun Sep 20 17:35:01 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6861bc6 dev-python/python-sipsimple: add libressl support .../python-sipsimple-2.5.1-r1.ebuild | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/dev-python/python-sipsimple/python-sipsimple-2.5.1-r1.ebuild b/dev-python/python-sipsimple/python-sipsimple-2.5.1-r1.ebuild new file mode 100644 index 0000000..f3e5e3c --- /dev/null +++ b/dev-python/python-sipsimple/python-sipsimple-2.5.1-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="SIP SIMPLE client SDK is a Software Development Kit" +HOMEPAGE="http://sipsimpleclient.org" +SRC_URI="http://download.ag-projects.com/SipClient/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +IUSE="libressl" + +KEYWORDS="~amd64 ~x86" + +CDEPEND=" + dev-db/sqlite:3 + !libressl? ( dev-libs/openssl:0 ) + libressl? ( dev-libs/libressl ) + dev-python/python-application[${PYTHON_USEDEP}] + media-libs/alsa-lib + media-libs/libv4l + media-libs/libvpx + sys-apps/util-linux + virtual/ffmpeg +" +RDEPEND="${CDEPEND} + dev-python/dnspython[${PYTHON_USEDEP}] + dev-python/python-cjson[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}] + dev-python/python-eventlib[${PYTHON_USEDEP}] + dev-python/greenlet[${PYTHON_USEDEP}] + dev-python/python-gnutls[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + dev-python/python-msrplib[${PYTHON_USEDEP}] + dev-python/python-xcaplib[${PYTHON_USEDEP}] + dev-python/twisted-core[${PYTHON_USEDEP}] + dev-python/zope-interface[${PYTHON_USEDEP}] +" +DEPEND="${CDEPEND} + dev-python/cython[${PYTHON_USEDEP}] + virtual/pkgconfig +"