wok diff openerp-server/receipt @ rev 25044

*/stuff/bootloader.S: fix VCPI case
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jun 02 15:48:36 2022 +0000 (2022-06-02)
parents 505d1daeed6c
children
line diff
     1.1 --- a/openerp-server/receipt	Thu May 19 10:39:49 2022 +0000
     1.2 +++ b/openerp-server/receipt	Thu Jun 02 15:48:36 2022 +0000
     1.3 @@ -16,6 +16,17 @@
     1.4  BUILD_DEPENDS="libxml2-python psycopg2 libxml2 libxslt-python python-reportlab \
     1.5  python-pychart python-pydot python-dev"
     1.6  
     1.7 +# What is the latest version available today?
     1.8 +current_version()
     1.9 +{
    1.10 +	local a=$(wget -O - https://nightly.odoo.com/old/ 2>/dev/null | \
    1.11 +	sed '/openerp-/!d;s|.*="||;s|/".*||' | sort -Vr | sed q)
    1.12 +	local b=$(wget -O - https://nightly.odoo.com/old/$a/ 2>/dev/null | \
    1.13 +	sed '/href="[0-9]/!d;s|.*="||;s|/".*||' | sort -Vr | sed q)
    1.14 +	wget -O - https://nightly.odoo.com/old/$a/$b/ 2>/dev/null | \
    1.15 +	sed '/openerp-client/d;/tar/!d;s|.*erp-||;s|.tar.*||;q'
    1.16 +}
    1.17 +
    1.18  # Rules to configure and make the package.
    1.19  compile_rules()
    1.20  {