# HG changeset patch # User Hans-G?nter Theisgen # Date 1656691064 -3600 # Node ID dd9b5a434facd99071107ce01f3c728c22bea1de # Parent 382418015236161d1a77b0104807b623609a0f7c updated python-erppeek (1.6.3 -> 1.7.1) diff -r 382418015236 -r dd9b5a434fac python-erppeek/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python-erppeek/description.txt Fri Jul 01 16:57:44 2022 +0100 @@ -0,0 +1,7 @@ +The ERPpeek library communicates with any Odoo / OpenERP server (>= 5.0) +using the standard XML-RPC interface or the new JSON-RPC interface. + +It provides both a fully featured low-level API, and an encapsulation of +the methods on Active Record objects. +Additional helpers are provided to explore the model and administrate +the server remotely. diff -r 382418015236 -r dd9b5a434fac python-erppeek/receipt --- a/python-erppeek/receipt Fri Jul 01 16:17:26 2022 +0100 +++ b/python-erppeek/receipt Fri Jul 01 16:57:44 2022 +0100 @@ -1,18 +1,20 @@ # SliTaz package receipt. PACKAGE="python-erppeek" -VERSION="1.6.3" +VERSION="1.7.1" CATEGORY="development" SHORT_DESC="Versatile tool for browsing Odoo / OpenERP data." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="BSD" WEB_SITE="https://pypi.python.org/pypi/$SOURCE/$VERSION" +REPOLOGY="python:erppeek" + SOURCE="ERPpeek" TARBALL="$SOURCE-$VERSION.tar.gz" WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" DEPENDS="python" -BUILD_DEPENDS="wget python python-setuptools" +BUILD_DEPENDS="python python-setuptools" # What is the latest version available today? current_version() @@ -24,11 +26,15 @@ # Rules to configure and make the package. compile_rules() { - python setup.py install --prefix=/usr --root=$DESTDIR + python setup.py \ + install \ + --prefix=/usr \ + --root=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/usr $fs/ + cook_copy_folders bin + cook_copy_folders lib }