Skip to content
Snippets Groups Projects
  1. Feb 24, 2021
  2. Jan 22, 2020
    • Martin Trigaux's avatar
      [FIX] auth_ldap: replace the deprecated library by one up to date · 1afd0ccf
      Martin Trigaux authored
      At 795c7b0a the external dependencies was changed from trying
      to import 'ldap' to checking than 'pyldap' package was installed.
      The problem is that pyldap is a unmaintained library that should no
      longer be used, as explained on the package page:
      https://pypi.org/project/pyldap/
      
      
      "The pyldap fork was merged back into python-ldap, and released as
       python-ldap 3.0.0."
      
      Having pyldap version >= 3.0 installs python-ldap automatically and
      will not cause any issue.
      
      The Debian control file package name is adapted to use the latest.
      
      The "ldap" externalm dependency defined in __manifest__.py will cause
      pkg_resources.get_distribution() to fail in both case ("python-lap" or
      "pyldap"), but the "import" fallback will succeed. For that reason, the
      log warning is turned into a log info.
      
      closes odoo/odoo#40249
      
      Note: This library should be replaced by the pure python "ldap3" library.
      Signed-off-by: default avatarChristophe Monniez (moc) <moc@odoo.com>
      1afd0ccf
  3. Oct 02, 2019
    • Christophe Monniez's avatar
      [REF] packaging: use docker to build packages · 8c4c4394
      Christophe Monniez authored
      
      Actually, docker is used to test Linux packages once they are built.
      The packaging process is done on the host system where package.py is
      run.
      
      Consequences:
          * difficult to reproduce an exact same build on another host
          * changing a Debian/Ubuntu target version means some upgrade steps
            on the build host (mix that with the fact that the host also
            could build old Odoo versions)
          * Fedora rpm package is built on an Ubuntu system (which is not a
            real problem but it could be)
      
      With this commit, the package.py utility is refactored to use Docker
      containers to build the Gnu/Linux packages.
      
      Also, the Debian package is adapted for Debian Buster, the RPM package
      is built based on Fedora 30.
      
      Some minor changes are also made in the windows packaging system.
      
      closes odoo/odoo#37766
      
      Signed-off-by: default avatarChristophe Monniez (moc) <moc@odoo.com>
      8c4c4394
  4. Jun 05, 2019
  5. Jan 29, 2019
    • Christophe Monniez's avatar
      [FIX] packaging: allow install on fedora29 · 7eec6b36
      Christophe Monniez authored
      Fedora 29 switched to python 3.7. It seems that there is no official
      way to build a RPM package that could works with 3.6 and 3.7.
      Building two different packages for each version could open the pandora
      box of packaging.
      
      With this commit an ugly hack is used: if python3.7 is found, the odoo
      directory is symlinked into its site-packages dir.
      
      fixes #30579
      
      closes odoo/odoo#30618
      7eec6b36
  6. Oct 09, 2018
    • Adrian Torres's avatar
      [REM] packaging: drop PyYAML dependency · a277bfb4
      Adrian Torres authored
      Commit cf853a78 removed all yml tests
      and the yml import engine from Odoo forever, however PyYAML remains a
      dependency even though it's not used anymore.
      
      This commit removes any reference to this lib that could be found.
      
      closes odoo/odoo#27563
      a277bfb4
  7. Jun 08, 2018
  8. Apr 18, 2018
  9. Oct 13, 2017
  10. Oct 12, 2017
  11. Oct 11, 2017
  12. Oct 09, 2017
  13. Oct 03, 2017
  14. Sep 30, 2016
  15. Jun 10, 2016
    • Simon Lejeune's avatar
      [REF] ir_qweb: less webasset: compress output instead of minifying it · 123e51f4
      Simon Lejeune authored
      * Remove dependency on less-plugin-clean-css which distribution
        packages are broken on debian stretch and derivated.
      * Updated documentation.
      * Lessc provides a `--compress` argument that could solve this issue.
        According to the documentation at http://lesscss.org/usage/: "[...]
        Compress using less built-in compression. This does an okay job but
        does not utilise all the tricks of dedicated css compression[...]"
        However, using this argument works on lessc 2.5.3 but not on 1.4.2
        (`--compress` arg is present but seems to be break some rules
        i haven't been able to put my finger on).
      * Finally, use the minification of the StylesheetAsset that takes care
        of removing the spaces, the comments and the sourcemap with regexes.
      
      fixes issue #9113
      123e51f4
  16. May 13, 2016
  17. Sep 28, 2015
  18. Sep 11, 2015
  19. Dec 19, 2014
  20. Nov 28, 2014
    • Simon Lejeune's avatar
      [FIX] Packaging: RedHat: dependencies management · 56b61da1
      Simon Lejeune authored
      PyChart is now in the EPEL repo so we now list it as required in
      setup.cfg. The other mandatory lib not provided by EPEL are
      pyPdf, vatnumber and pydot and are now installed by easy_install
      during the post install.
      56b61da1
    • Simon Lejeune's avatar
      [FIX] Packaging: RedHat: install in /usr and add systemd unit file · be96dd85
      Simon Lejeune authored
      By default, the package was installed in /usr/local/lib/python2.7 in CentOS7.
      It is problematic because most of other python packages are installed in /usr/lib
      and also because /usr/local/lib is not in the default PYTHONPATH. It's fixed by
      overriding the install script and forcing prefix to be /usr.
      
      Added a minimal systemd unitfile.
      Adapted tests accordingly.
      be96dd85
  21. Sep 29, 2014
  22. Sep 02, 2014
  23. Jun 23, 2014
  24. May 30, 2014
  25. May 29, 2014
    • Antony Lesuisse's avatar
      [IMP] repository cleanup · d4624fa8
      Antony Lesuisse authored
      - move packaging stuff to setup
      - remove historical stuff
      - remove oe, odoo-cmd-fme will be merged with the convered commands
      - add an odoo.py script to run odo and boostrap it
      - simplify README
      - prepare to move documentation to the github wiki
      d4624fa8
  26. Oct 06, 2011
  27. Sep 26, 2011
  28. Oct 19, 2010
  29. May 11, 2010
  30. Feb 13, 2009
  31. Feb 09, 2009
  32. Jan 23, 2009
  33. Dec 29, 2008
Loading