From 3faf011988bf1728989962e062a474aaa62b55f5 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 22 Apr 2013 00:46:42 -0700 Subject: Mon Apr 22 00:46:41 PDT 2013 --- pcr/gnuhealth/PKGBUILD | 21 +++++++++++++++++++-- pcr/python2-pywebdav/PKGBUILD | 22 ++++++++++++++++++++++ pcr/python2-qrcode/PKGBUILD | 22 ++++++++++++++++++++++ pcr/python2-setuptools/PKGBUILD | 30 ++++++++++++++++++++++++++++++ pcr/trytond-account-invoice/PKGBUILD | 20 ++++++++++++++++++++ pcr/trytond-account-product/PKGBUILD | 20 ++++++++++++++++++++ pcr/trytond-account/PKGBUILD | 20 ++++++++++++++++++++ pcr/trytond-calendar/PKGBUILD | 20 ++++++++++++++++++++ pcr/trytond-company/PKGBUILD | 20 ++++++++++++++++++++ pcr/trytond-country/PKGBUILD | 20 ++++++++++++++++++++ pcr/trytond-currency/PKGBUILD | 20 ++++++++++++++++++++ pcr/trytond-party/PKGBUILD | 20 ++++++++++++++++++++ pcr/trytond-product/PKGBUILD | 20 ++++++++++++++++++++ pcr/trytond-stock-lot/PKGBUILD | 20 ++++++++++++++++++++ pcr/trytond-stock/PKGBUILD | 20 ++++++++++++++++++++ 15 files changed, 313 insertions(+), 2 deletions(-) create mode 100644 pcr/python2-pywebdav/PKGBUILD create mode 100644 pcr/python2-qrcode/PKGBUILD create mode 100644 pcr/python2-setuptools/PKGBUILD create mode 100644 pcr/trytond-account-invoice/PKGBUILD create mode 100644 pcr/trytond-account-product/PKGBUILD create mode 100644 pcr/trytond-account/PKGBUILD create mode 100644 pcr/trytond-calendar/PKGBUILD create mode 100644 pcr/trytond-company/PKGBUILD create mode 100644 pcr/trytond-country/PKGBUILD create mode 100644 pcr/trytond-currency/PKGBUILD create mode 100644 pcr/trytond-party/PKGBUILD create mode 100644 pcr/trytond-product/PKGBUILD create mode 100644 pcr/trytond-stock-lot/PKGBUILD create mode 100644 pcr/trytond-stock/PKGBUILD (limited to 'pcr') diff --git a/pcr/gnuhealth/PKGBUILD b/pcr/gnuhealth/PKGBUILD index 0a02eba94..695062e5b 100644 --- a/pcr/gnuhealth/PKGBUILD +++ b/pcr/gnuhealth/PKGBUILD @@ -3,12 +3,29 @@ pkgname=gnuhealth pkgver=1.8.1 -pkgrel=1 +pkgrel=3 pkgdesc="A free Health and Hospital Information System" arch=(any) url="http://health.gnu.org/" license=('GPL3') -depends=('trytond') +depends=( + postgresql + pygtk + python2-dateutil + python2-imaging + python2-ldap + python2-pip + python2-psycopg2 + python2-pytz + python2-pywebdav + python2-qrcode + python2-vobject + trytond + trytond-account-invoice + trytond-calendar + trytond-country + trytond-stock-lot +) source=("http://ftp.gnu.org/gnu/health/$pkgname-$pkgver.tar.gz") md5sums=('d3837242011df1d39ce7a0f1d6e6a46a') diff --git a/pcr/python2-pywebdav/PKGBUILD b/pcr/python2-pywebdav/PKGBUILD new file mode 100644 index 000000000..c5c72b22a --- /dev/null +++ b/pcr/python2-pywebdav/PKGBUILD @@ -0,0 +1,22 @@ +# Maintainer: Dan Serban (dserban01 => gmail) +# Contributor: Gour + +pkgname=python2-pywebdav +pkgver=0.9.8 +pkgrel=1 +pkgdesc="A standards compliant WebDAV server and library written in Python" +arch=('any') +url="http://code.google.com/p/pywebdav/" +license=('GPLv2') +depends=('python2' 'pyxml') +conflicts=('python-pywebdav') +makedepends=('python2-distribute') +source=(http://pywebdav.googlecode.com/files/PyWebDAV-$pkgver.tar.gz) +md5sums=('2fd2aca0074f0d0ac2701c9c0cadb89e') + +package() +{ + cd $srcdir/PyWebDAV-$pkgver + python2 setup.py install --root=$pkgdir/ + install -D doc/LICENSE $startdir/pkg/usr/share/licenses/$pkgname/LICENSE +} diff --git a/pcr/python2-qrcode/PKGBUILD b/pcr/python2-qrcode/PKGBUILD new file mode 100644 index 000000000..cd807331e --- /dev/null +++ b/pcr/python2-qrcode/PKGBUILD @@ -0,0 +1,22 @@ +# Contributor: Francois Boulogne +# Maintainer: Francois Boulogne + +pkgname=python2-qrcode +pkgver=2.3.1 +pkgrel=1 +pkgdesc="Python library to generate QR codes" +arch=('any') +url="https://github.com/lincolnloop/python-qrcode" +license=('BSD') +depends=('python-imaging' 'python2') +source=(http://pypi.python.org/packages/source/q/qrcode/qrcode-${pkgver}.tar.gz) +md5sums=("574a5e617e87fd00a47a5abcc53443b4") + +package() { + cd "$srcdir/qrcode-$pkgver" + + python2 setup.py install --root="${pkgdir}" + +} + +# vim:ts=2:sw=2:et: diff --git a/pcr/python2-setuptools/PKGBUILD b/pcr/python2-setuptools/PKGBUILD new file mode 100644 index 000000000..85f0caf32 --- /dev/null +++ b/pcr/python2-setuptools/PKGBUILD @@ -0,0 +1,30 @@ +# Maintainer: Jaroslav Lichtblau +# Contributor: cwchen +# Contributor: Florian Friesdorf +# Contributor: simo +# Contributor: William Rea +# Contributor: Todd Maynard + +pkgname=python2-setuptools +_pkgname=setuptools +pkgver=0.6c11 +pkgrel=2 +pkgdesc="A collection of enhancements to the Python distutils" +arch=('any') +url="http://peak.telecommunity.com/DevCenter/setuptools" +license=('PSF') +depends=('python2') +provides=('setuptools') +conflicts=('python2-distribute') +source=(http://pypi.python.org/packages/source/s/${_pkgname}/${_pkgname}-${pkgver}.tar.gz) +md5sums=('7df2a529a074f613b509fb44feefe74e') + +package() { + cd ${srcdir}/${_pkgname}-${pkgver} + + python2 setup.py install --root=${pkgdir} --prefix=/usr + +# we don't provide a non-suffixed easy_install + echo "Removing non-suffixed easy_install" + rm ${pkgdir}/usr/bin/easy_install +} diff --git a/pcr/trytond-account-invoice/PKGBUILD b/pcr/trytond-account-invoice/PKGBUILD new file mode 100644 index 000000000..1f2574548 --- /dev/null +++ b/pcr/trytond-account-invoice/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-account-invoice +_pkgname=trytond_account_invoice +pkgver=2.6.3 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The account_invoice module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6' 'trytond-account>=2.6' 'trytond-company>=2.6' 'trytond-party>=2.6' 'trytond-product>=2.6' 'trytond-currency>=2.6' 'trytond-account-product>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("a93b71985bbcb70499019429a3dc4e25") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} diff --git a/pcr/trytond-account-product/PKGBUILD b/pcr/trytond-account-product/PKGBUILD new file mode 100644 index 000000000..b8ec822c6 --- /dev/null +++ b/pcr/trytond-account-product/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-account-product +_pkgname=trytond_account_product +pkgver=2.6.0 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The account_product module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6' 'trytond-account>=2.6' 'trytond-company>=2.6' 'trytond-product>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("7c4ebba0419c62addeb7417c57a84125") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} diff --git a/pcr/trytond-account/PKGBUILD b/pcr/trytond-account/PKGBUILD new file mode 100644 index 000000000..b4c2affb0 --- /dev/null +++ b/pcr/trytond-account/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-account +_pkgname=trytond_account +pkgver=2.6.3 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The account module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6' 'trytond-company>=2.6' 'trytond-party>=2.6' 'trytond-currency>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("872c05b5be3d6737575137d827234cfb") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} diff --git a/pcr/trytond-calendar/PKGBUILD b/pcr/trytond-calendar/PKGBUILD new file mode 100644 index 000000000..db8756171 --- /dev/null +++ b/pcr/trytond-calendar/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-calendar +_pkgname=trytond_calendar +pkgver=2.6.1 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The calendar module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("a6612776bf735eb9c68e2a5b3aa8ce83") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} diff --git a/pcr/trytond-company/PKGBUILD b/pcr/trytond-company/PKGBUILD new file mode 100644 index 000000000..da9e2b27f --- /dev/null +++ b/pcr/trytond-company/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-company +_pkgname=trytond_company +pkgver=2.6.1 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The company module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6' 'trytond-party>=2.6' 'trytond-currency>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("7f5ad0dab46f3c62c7f03ea5d48684f9") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} diff --git a/pcr/trytond-country/PKGBUILD b/pcr/trytond-country/PKGBUILD new file mode 100644 index 000000000..17c06dc33 --- /dev/null +++ b/pcr/trytond-country/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-country +_pkgname=trytond_country +pkgver=2.6.0 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The country module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("867338ac91e0130e3b7427e8af9a6c6d") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} diff --git a/pcr/trytond-currency/PKGBUILD b/pcr/trytond-currency/PKGBUILD new file mode 100644 index 000000000..9a21153c0 --- /dev/null +++ b/pcr/trytond-currency/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-currency +_pkgname=trytond_currency +pkgver=2.6.1 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The currency module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("c38869231a22dd0c80a595c523491412") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} diff --git a/pcr/trytond-party/PKGBUILD b/pcr/trytond-party/PKGBUILD new file mode 100644 index 000000000..1f3b35c6e --- /dev/null +++ b/pcr/trytond-party/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-party +_pkgname=trytond_party +pkgver=2.6.0 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The party module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6' 'trytond-country>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("82fc07ffd9bcedc28f5526fe5c6228e6") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} diff --git a/pcr/trytond-product/PKGBUILD b/pcr/trytond-product/PKGBUILD new file mode 100644 index 000000000..de158f436 --- /dev/null +++ b/pcr/trytond-product/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-product +_pkgname=trytond_product +pkgver=2.6.0 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The product module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("84cbc997b557cbf46d74a5958d8ec0a5") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} diff --git a/pcr/trytond-stock-lot/PKGBUILD b/pcr/trytond-stock-lot/PKGBUILD new file mode 100644 index 000000000..01cd34681 --- /dev/null +++ b/pcr/trytond-stock-lot/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-stock-lot +_pkgname=trytond_stock_lot +pkgver=2.6.0 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The stock_lot module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6' 'trytond-product>=2.6' 'trytond-stock>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("4ca52557e691488e566c7eab3aa0ce5d") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} diff --git a/pcr/trytond-stock/PKGBUILD b/pcr/trytond-stock/PKGBUILD new file mode 100644 index 000000000..453f931fe --- /dev/null +++ b/pcr/trytond-stock/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: Robin Baumgartner +pkgname=trytond-stock +_pkgname=trytond_stock +pkgver=2.6.1 +_pkgdir=2.6 +pkgrel=1 +pkgdesc="The stock module of the Tryton application platform" +arch=('any') +url='http://www.tryton.org/' +license=('GPL3') +groups=('trytond-modules') +depends=('trytond>=2.6' 'trytond-party>=2.6' 'trytond-product>=2.6' 'trytond-company>=2.6' 'trytond-currency>=2.6') +makedepends=('python2-distribute') +source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") +md5sums=("fd303fc990f9a26de60e0928693461e2") + +package() { + cd $srcdir/$_pkgname-$pkgver + python2 setup.py install --root=$pkgdir +} -- cgit v1.2.3-54-g00ecf