Re: [Tomi Ollila] [RFC PATCH] python-cffi out-of-tree build

2021-10-05 Thread David Bremner
Floris Bruynooghe  writes:

> Hi David, everyone,
>
> I had a vague recollection of reading from a single version file before
> and indeed, looking through annotations it seems commit
> 3a42abb456893b71b530f099a1467400f2b0ea71 changed this.  Seems the
> concern was that "pip install ." didn't work.  So perhaps that's
> something else to check?
>

Yes, that's correct. There could be a different way of doing this, but I
don't understand pip very well, so this is the best I could come up with
to make "pip install ." work.

d
___
notmuch mailing list -- notmuch@notmuchmail.org
To unsubscribe send an email to notmuch-le...@notmuchmail.org


Re: [Tomi Ollila] [RFC PATCH] python-cffi out-of-tree build

2021-08-10 Thread Floris Bruynooghe
Hi David, everyone,

I had a vague recollection of reading from a single version file before
and indeed, looking through annotations it seems commit
3a42abb456893b71b530f099a1467400f2b0ea71 changed this.  Seems the
concern was that "pip install ." didn't work.  So perhaps that's
something else to check?

And err... thanks for your patience.  I know this is really slow!

Cheers,
Floris


On Mon 02 Aug 2021 at 07:44 -0300, David Bremner wrote:

> Any thoughts on this one?
> From: Tomi Ollila 
> Subject: [RFC PATCH] python-cffi out-of-tree build
> To: notmuch@notmuchmail.org
> Cc: tomi.oll...@iki.fi
> Date: Wed, 17 Feb 2021 23:36:00 +0200
>
> setup.py and _build.py to refer some other files based on directory
> where setup.py is located (os.path.dirname(sys.argv[0]).
>
> Dropped bindings/python-cffi/version.txt and refer ../../version.txt
> instead -- _build.py already refers ../../lib so why have version.txt
> twice (with identical content).
>
> Dropped copying of bindings/python-cffi source files to the build
> directory bindings/python-cffi in configure.
>
> ---
>
> an RFC alternative to id:20210215215410.28668-1-tomi.oll...@iki.fi
>
> I really don't know how this should be done... do they even in e.g.
> https://github.com/pypa/pip/issues/7555 ?
>
> Tested to work in in-tree build, and out-of-tree builds referencing
> .../notmuch/configure with absolute and relative paths, and all
> 3 builds worked.
>
> When doing out-of-tree build, only _capi.abi3.so appeared in
> bindings/python-cffi/build/stage/notmuch2/ -- in case of in-tree
> build all the notmuch2/*.py source files also got copied there...
>
> ... I tried this changei in setup.py:
> .  - packages=setuptools.find_packages(exclude=['tests'])
> .  + packages=setuptools.find_packages(dn0, exclude=['tests'])
> but then build broke.
>
>  bindings/Makefile.local | 5 +++--
>  bindings/python-cffi/notmuch2/_build.py | 6 +-
>  bindings/python-cffi/setup.py   | 9 +++--
>  bindings/python-cffi/version.txt| 1 -
>  configure   | 4 
>  5 files changed, 15 insertions(+), 10 deletions(-)
>  delete mode 100644 bindings/python-cffi/version.txt
>
> diff --git a/bindings/Makefile.local b/bindings/Makefile.local
> index bc960bbc..d5c70bff 100644
> --- a/bindings/Makefile.local
> +++ b/bindings/Makefile.local
> @@ -15,9 +15,10 @@ endif
>  
>  python-cffi-bindings: lib/$(LINKER_NAME)
>  ifeq ($(HAVE_PYTHON3_CFFI),1)
> + test '$(srcdir)' = . && bdir=. || 
> bdir='$(NOTMUCH_SRCDIR)/$(dir)/python-cffi'; \
>   cd $(dir)/python-cffi && \
> - ${PYTHON} setup.py build --build-lib build/stage && \
> - mkdir -p build/stage/tests && cp tests/*.py build/stage/tests
> + ${PYTHON} "$$bdir"/setup.py build --build-lib build/stage && \
> + mkdir -p build/stage/tests && cp "$$bdir"/tests/*.py 
> build/stage/tests
>  endif
>  
>  CLEAN += $(patsubst %,$(dir)/ruby/%, \
> diff --git a/bindings/python-cffi/notmuch2/_build.py 
> b/bindings/python-cffi/notmuch2/_build.py
> index f67b4de6..ad585d21 100644
> --- a/bindings/python-cffi/notmuch2/_build.py
> +++ b/bindings/python-cffi/notmuch2/_build.py
> @@ -1,5 +1,9 @@
>  import cffi
>  
> +import os
> +import sys
> +
> +dn0 = os.path.dirname(sys.argv[0])
>  
>  ffibuilder = cffi.FFI()
>  ffibuilder.set_source(
> @@ -16,7 +20,7 @@ ffibuilder.set_source(
>  #ERROR libnotmuch  version < 5.1 not supported
>  #endif
>  """,
> -include_dirs=['../../lib'],
> +include_dirs=[dn0 + '/../../lib'],
>  library_dirs=['../../lib'],
>  libraries=['notmuch'],
>  )
> diff --git a/bindings/python-cffi/setup.py b/bindings/python-cffi/setup.py
> index cda52338..5884944b 100644
> --- a/bindings/python-cffi/setup.py
> +++ b/bindings/python-cffi/setup.py
> @@ -1,6 +1,11 @@
>  import setuptools
>  
> -with open('version.txt') as fp:
> +import os
> +import sys
> +
> +dn0 = os.path.dirname(sys.argv[0])
> +
> +with open(dn0 + '/../../version.txt') as fp:
>  VERSION = fp.read().strip()
>  
>  setuptools.setup(
> @@ -12,7 +17,7 @@ setuptools.setup(
>  setup_requires=['cffi>=1.0.0'],
>  install_requires=['cffi>=1.0.0'],
>  packages=setuptools.find_packages(exclude=['tests']),
> -cffi_modules=['notmuch2/_build.py:ffibuilder'],
> +cffi_modules=[dn0 + '/notmuch2/_build.py:ffibuilder'],
>  classifiers=[
>  'Development Status :: 3 - Alpha',
>  'Intended Audience :: Developers',
> diff --git a/bindings/python-cffi/version.txt 
> b/bindings/p