From 9512a99190f51080abaebeb425a767b0820273fe Mon Sep 17 00:00:00 2001 From: Daniele Date: Sun, 6 Nov 2011 01:45:22 +0000 Subject: [PATCH] New python-backports dependency for python-sipsimple: adding it and upgrading python-sipsimple accordingly. --- python-backports/PKGBUILD | 26 ++++++++++++++++++++++++++ python-sipsimple/PKGBUILD | 6 +++--- 2 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 python-backports/PKGBUILD diff --git a/python-backports/PKGBUILD b/python-backports/PKGBUILD new file mode 100644 index 000000000..160e0f7fe --- /dev/null +++ b/python-backports/PKGBUILD @@ -0,0 +1,26 @@ +# +# Apps Packages for Chakra, part of chakra-project.org +# +# Maintainer: Daniele Cocca +# + +# include global config +source ../_buildscripts/${current_repo}-${_arch}-cfg.conf + +pkgname=python-backports +pkgver=1.0.0 +pkgrel=1 +pkgdesc="Collection of backported python features that run on Python 2.5 or newer." +arch=('any') +license=('LGPL') +depends=('python2') +url="http://ag-projects.com/" +source=("http://download.ag-projects.com/SipClient/${pkgname}-${pkgver}.tar.gz") +md5sums=('fe1cc2c79f9d987fc67ca0e986a183a7') + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + python2 setup.py install --prefix=/usr --root="${pkgdir}" || return 1 +} + +# vim:set ts=2 sw=2 et: diff --git a/python-sipsimple/PKGBUILD b/python-sipsimple/PKGBUILD index 2301d9359..05107be7c 100644 --- a/python-sipsimple/PKGBUILD +++ b/python-sipsimple/PKGBUILD @@ -8,12 +8,12 @@ source ../_buildscripts/${current_repo}-${_arch}-cfg.conf pkgname=python-sipsimple -pkgver=20111105 -pkgrel=1 +pkgver=20111106 +pkgrel=2 pkgdesc="SIP SIMPLE Client SDK is a Software Development Kit for easy development of SIP end-points that support rich media like Audio, Instant Messaging, File Transfers, Desktop Sharing and Presence." arch=('i686' 'x86_64') license=('LGPL') -depends=('python2' 'openssl' 'gnutls>=2.4.1' 'libxml2>=2.6.32' 'libxslt>=1.1.24' 'python-gnutls>=1.1.9' 'python-application>=1.2.5' 'python-lxml>=2.1.2' 'python-eventlet>=0.8.11' 'python-cjson>=1.0.5' 'python-cython>=0.12.1' 'python-dnspython>=1.6.0' 'twisted>=8.1.0' 'zope-interface>=3.3.1' 'python-imaging>=1.1.6' 'python-dateutil>=1.4' 'python-msrplib' 'python-xcaplib') +depends=('python2' 'openssl' 'gnutls>=2.4.1' 'libxml2>=2.6.32' 'libxslt>=1.1.24' 'python-gnutls>=1.1.9' 'python-application>=1.2.5' 'python-lxml>=2.1.2' 'python-eventlet>=0.8.11' 'python-backports>=1.0.0' 'python-cjson>=1.0.5' 'python-cython>=0.12.1' 'python-dnspython>=1.6.0' 'twisted>=8.1.0' 'zope-interface>=3.3.1' 'python-imaging>=1.1.6' 'python-dateutil>=1.4' 'python-msrplib' 'python-xcaplib') makedepends=('setuptools>=0.6c9' 'subversion' 'darcs') optdepends=('python-sipclients: command line programs to test the SIP SIMPLE Client library') url="http://sipsimpleclient.com/"