New python-backports dependency for python-sipsimple: adding it and upgrading python-sipsimple accordingly.

This commit is contained in:
Daniele 2011-11-06 01:45:22 +00:00
parent d1e13b2116
commit 9512a99190
2 changed files with 29 additions and 3 deletions

26
python-backports/PKGBUILD Normal file
View File

@ -0,0 +1,26 @@
#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Daniele Cocca <jmc@chakra-project.org>
#
# 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:

View File

@ -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/"