wok rev 25172

updated python-erppeek (1.6.3 -> 1.7.1)
author Hans-G?nter Theisgen
date Fri Jul 01 16:57:44 2022 +0100 (22 months ago)
parents 382418015236
children d56de587d8e8
files python-erppeek/description.txt python-erppeek/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/python-erppeek/description.txt	Fri Jul 01 16:57:44 2022 +0100
     1.3 @@ -0,0 +1,7 @@
     1.4 +The ERPpeek library communicates with any Odoo / OpenERP server (>= 5.0)
     1.5 +using the standard XML-RPC interface or the new JSON-RPC interface.
     1.6 +
     1.7 +It provides both a fully featured low-level API, and an encapsulation of
     1.8 +the methods on Active Record objects.
     1.9 +Additional helpers are provided to explore the model and administrate
    1.10 +the server remotely.
     2.1 --- a/python-erppeek/receipt	Fri Jul 01 16:17:26 2022 +0100
     2.2 +++ b/python-erppeek/receipt	Fri Jul 01 16:57:44 2022 +0100
     2.3 @@ -1,18 +1,20 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="python-erppeek"
     2.7 -VERSION="1.6.3"
     2.8 +VERSION="1.7.1"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Versatile tool for browsing Odoo / OpenERP data."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="BSD"
    2.13  WEB_SITE="https://pypi.python.org/pypi/$SOURCE/$VERSION"
    2.14 +REPOLOGY="python:erppeek"
    2.15 +
    2.16  SOURCE="ERPpeek"
    2.17  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.18  WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL"
    2.19  
    2.20  DEPENDS="python"
    2.21 -BUILD_DEPENDS="wget python python-setuptools"
    2.22 +BUILD_DEPENDS="python python-setuptools"
    2.23  
    2.24  # What is the latest version available today?
    2.25  current_version()
    2.26 @@ -24,11 +26,15 @@
    2.27  # Rules to configure and make the package.
    2.28  compile_rules()
    2.29  {
    2.30 -	python setup.py install --prefix=/usr --root=$DESTDIR
    2.31 +	python	setup.py	\
    2.32 +		install		\
    2.33 +		--prefix=/usr	\
    2.34 +		--root=$DESTDIR
    2.35  }
    2.36  
    2.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.38  genpkg_rules()
    2.39  {
    2.40 -	cp -a $install/usr $fs/
    2.41 +	cook_copy_folders	bin
    2.42 +	cook_copy_folders	lib
    2.43  }