Gentoo Archives: gentoo-commits

From: Julian Ospald <hasufell@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-sipsimple/
Date: Sun, 20 Sep 2015 17:35:24
Message-Id: 1442770501.a6861bc62c00370af922fa1702366443ff9130d5.hasufell@gentoo
1 commit: a6861bc62c00370af922fa1702366443ff9130d5
2 Author: Julian Ospald <hasufell <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 20 17:19:18 2015 +0000
4 Commit: Julian Ospald <hasufell <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 20 17:35:01 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6861bc6
7
8 dev-python/python-sipsimple: add libressl support
9
10 .../python-sipsimple-2.5.1-r1.ebuild | 48 ++++++++++++++++++++++
11 1 file changed, 48 insertions(+)
12
13 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
14 new file mode 100644
15 index 0000000..f3e5e3c
16 --- /dev/null
17 +++ b/dev-python/python-sipsimple/python-sipsimple-2.5.1-r1.ebuild
18 @@ -0,0 +1,48 @@
19 +# Copyright 1999-2015 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI="5"
24 +
25 +PYTHON_COMPAT=( python2_7 )
26 +
27 +inherit distutils-r1
28 +
29 +DESCRIPTION="SIP SIMPLE client SDK is a Software Development Kit"
30 +HOMEPAGE="http://sipsimpleclient.org"
31 +SRC_URI="http://download.ag-projects.com/SipClient/${P}.tar.gz"
32 +
33 +LICENSE="GPL-3"
34 +SLOT="0"
35 +IUSE="libressl"
36 +
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +CDEPEND="
40 + dev-db/sqlite:3
41 + !libressl? ( dev-libs/openssl:0 )
42 + libressl? ( dev-libs/libressl )
43 + dev-python/python-application[${PYTHON_USEDEP}]
44 + media-libs/alsa-lib
45 + media-libs/libv4l
46 + media-libs/libvpx
47 + sys-apps/util-linux
48 + virtual/ffmpeg
49 +"
50 +RDEPEND="${CDEPEND}
51 + dev-python/dnspython[${PYTHON_USEDEP}]
52 + dev-python/python-cjson[${PYTHON_USEDEP}]
53 + dev-python/python-dateutil[${PYTHON_USEDEP}]
54 + dev-python/python-eventlib[${PYTHON_USEDEP}]
55 + dev-python/greenlet[${PYTHON_USEDEP}]
56 + dev-python/python-gnutls[${PYTHON_USEDEP}]
57 + dev-python/lxml[${PYTHON_USEDEP}]
58 + dev-python/python-msrplib[${PYTHON_USEDEP}]
59 + dev-python/python-xcaplib[${PYTHON_USEDEP}]
60 + dev-python/twisted-core[${PYTHON_USEDEP}]
61 + dev-python/zope-interface[${PYTHON_USEDEP}]
62 +"
63 +DEPEND="${CDEPEND}
64 + dev-python/cython[${PYTHON_USEDEP}]
65 + virtual/pkgconfig
66 +"