1. 24 May, 2024 1 commit
  2. 23 May, 2024 1 commit
    • Kirill Smelkov's avatar
      stack/slapos: v↑ setuptools-dso 2.9 -> 2.10 · 5eed3c4b
      Kirill Smelkov authored
      With newer setuptools that is coming via nexedi/slapos!1550 (44.1.1 -> 67.8.0)
      we will need a fix from setuptools-dso 2.10 to handle `python setup develop` well:
      
      Previously with setutools-dso 2.9 and setuptools 67.8.0 built shared libraries were not
      copied back into the working tree upon develop install which made anything
      using pygolang to fail as e.g.
      
          $ ../bin/gpython
          Traceback (most recent call last):
            File ".../../bin/gpython", line 20, in <module>
              sys.exit(gpython.main())
            File ".../pygolang/gpython/__init__.py", line 456, in main
              pymain(argv, init)
            File ".../pygolang/gpython/__init__.py", line 223, in pymain
              init()
            File ".../pygolang/gpython/__init__.py", line 447, in init
              import golang
            File ".../pygolang/golang/__init__.py", line 41, in <module>
              from golang._gopath import gimport  # make gimport available from golang
            File ".../pygolang/golang/_gopath.py", line 65, in <module>
              from golang import sync
            File ".../pygolang/golang/sync.py", line 36, in <module>
              from golang._sync import \
          ImportError: liblibgolang.so.0.1: cannot open shared object file: No such file or directory
      
      See https://github.com/mdavidsaver/setuptools_dso/pull/29#issuecomment-1745790761
      and https://github.com/mdavidsaver/setuptools_dso/commit/2fdf75f2 for details.
      
      P.S. NOTE that changing version of a setup-egg required egg currently does
      _not_ force a rebuild. In other words pushing this change into testnodes won't
      make pygolang t o be rebuilt at all. I think this is simply a bug in
      slapos.buildout to fix.
      
      /reported-by @xavier_thompson
      /cc @jerome, @tomo, @kazuhiko
      /reviewed-on nexedi/slapos!1585
      5eed3c4b
  3. 22 May, 2024 2 commits
  4. 21 May, 2024 1 commit
  5. 20 May, 2024 9 commits
  6. 17 May, 2024 8 commits
  7. 16 May, 2024 6 commits
  8. 15 May, 2024 3 commits
  9. 13 May, 2024 4 commits
  10. 10 May, 2024 3 commits
  11. 09 May, 2024 2 commits
    • Julien Muchembled's avatar
      sqlite3: fix readline · a6d83fa2
      Julien Muchembled authored
      --enable-readline is broken:
        - it searches for readline.h instead of readline/readline.h
        - it does not abort when it fails to find headers
      Use --with-readline-inc so that it sets HAVE_READLINE.
      
      Also use the dedicated configure option to enable update limit.
      And sqlite3 does not depend directly on ncurses.
      a6d83fa2
    • Julien Muchembled's avatar
      6505c2d2