summaryrefslogtreecommitdiff
path: root/pcr/trytond
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2017-01-23 01:07:26 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2017-01-23 01:07:26 -0500
commit32a1946ee3539a2670bc4a9e6d18929dc4795ed2 (patch)
tree89e4fec0dc32f8a73faf6998d26b90792a3ed68b /pcr/trytond
parent43bc41f0ffc305ccb24d93f6a77ac5988976d6dc (diff)
trytond-4.2.1-1: updating version
Diffstat (limited to 'pcr/trytond')
-rw-r--r--pcr/trytond/PKGBUILD17
-rw-r--r--pcr/trytond/trytond.install23
2 files changed, 7 insertions, 33 deletions
diff --git a/pcr/trytond/PKGBUILD b/pcr/trytond/PKGBUILD
index a011e84da..b777b5ae0 100644
--- a/pcr/trytond/PKGBUILD
+++ b/pcr/trytond/PKGBUILD
@@ -2,8 +2,8 @@
# Maintainer (Arch): Robin Baumgartner <robin@baumgartners.ch>
# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
pkgname=trytond
-pkgver=4.0.1
-_pkgdir=4.0
+pkgver=4.2.1
+_pkgdir=4.2
pkgrel=1
pkgdesc="A three-tiers high-level general purpose application platform (server application)"
arch=('any')
@@ -11,22 +11,19 @@ url="http://www.tryton.org/"
license=('GPL3')
depends=('python2>=2.7' 'python2-lxml' 'python2-relatorio>=0.2.0'
'python2-genshi>=0.5' 'python2-dateutil' 'python2-polib'
- 'python2-sql')
+ 'python2-sql>=0.4' 'python2-werkzeug' 'python2-wrapt')
optdepends=('python2-psycopg2: support for PostgreSQL database'
- 'python2-pywebdav: support for WebDAV feature'
+ 'unoconv: support for document conversion'
'python2-pydot: support for displaying workflow graphs'
- 'python2-pytz: timezone support'
- 'python2-pyopenssl: support for SSL connection')
+ 'python2-levenshtein'
+ 'python2-bcrypt')
makedepends=('python2-distribute')
backup=('etc/trytond.conf')
-install="trytond.install"
source=("http://downloads.tryton.org/$_pkgdir/$pkgname-$pkgver.tar.gz"
'trytond.conf'
- 'trytond.install'
'trytond.service')
-md5sums=('ec4da54bd4525aa450bb052c05006c48'
+md5sums=('ab3e92100e0229ca8a48f03f3dbc5a30'
'db21177e78e6983d85feb14436f5a7ba'
- 'bc93f99ec68feea9f3e3e11e2cb2b735'
'c3318e663c17194d71f6ef4ded16b293')
build() {
diff --git a/pcr/trytond/trytond.install b/pcr/trytond/trytond.install
deleted file mode 100644
index 453bcac1d..000000000
--- a/pcr/trytond/trytond.install
+++ /dev/null
@@ -1,23 +0,0 @@
-post_install() {
- echo
- echo "Adding tryton group... "
- groupadd tryton
- echo "Adding tryton user... "
- useradd -c "Tryton Server Daemon" -g tryton -s /bin/false tryton
-
- echo
- echo "Note:"
- echo "- Tryton modules can be installed using pip2, e.g. 'pip2 install trytond-party'."
- echo "- Configure Tryton using the config file /etc/trytond.conf."
- echo "- See the Tryton documentation at http://doc.tryton.org for more information."
- echo
-}
-
-post_remove() {
- echo "Removing tryton user... "
- userdel tryton
-}
-
-op=$1
-shift
-[ "$(type -t "$op")" = "function" ] && $op "$@"