From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id C68646DE0F19 for ; Sun, 3 Nov 2019 17:58:15 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.059 X-Spam-Level: X-Spam-Status: No, score=-0.059 tagged_above=-999 required=5 tests=[AWL=-0.058, SPF_PASS=-0.001] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6T-lfMiFItFc for ; Sun, 3 Nov 2019 17:58:13 -0800 (PST) Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) by arlo.cworth.org (Postfix) with ESMTPS id D4FEA6DE0EB0 for ; Sun, 3 Nov 2019 17:58:13 -0800 (PST) Received: from remotemail by fethera.tethera.net with local (Exim 4.89) (envelope-from ) id 1iRRPQ-0003vW-Vn; Sun, 03 Nov 2019 20:43:57 -0500 Received: (nullmailer pid 23212 invoked by uid 1000); Mon, 04 Nov 2019 01:39:35 -0000 From: David Bremner To: notmuch@notmuchmail.org Subject: [PATCH 3/5] build: optionally build python-cffi bindings Date: Sun, 3 Nov 2019 21:39:25 -0400 Message-Id: <20191104013927.17037-4-david@tethera.net> X-Mailer: git-send-email 2.24.0.rc1 In-Reply-To: <20191104013927.17037-1-david@tethera.net> References: <20191104013927.17037-1-david@tethera.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Nov 2019 01:58:15 -0000 Put the build product (and tests) in a well known location so that we can find them e.g. from the tests. --- Makefile.local | 2 +- bindings/Makefile.local | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Makefile.local b/Makefile.local index 3c6dacbc..7c12612d 100644 --- a/Makefile.local +++ b/Makefile.local @@ -1,7 +1,7 @@ # -*- makefile -*- .PHONY: all -all: notmuch notmuch-shared build-man build-info ruby-bindings +all: notmuch notmuch-shared build-man build-info ruby-bindings python-cffi-bindings ifeq ($(MAKECMDGOALS),) ifeq ($(shell cat .first-build-message 2>/dev/null),) @NOTMUCH_FIRST_BUILD=1 $(MAKE) --no-print-directory all diff --git a/bindings/Makefile.local b/bindings/Makefile.local index 18f95835..b8e18c92 100644 --- a/bindings/Makefile.local +++ b/bindings/Makefile.local @@ -13,6 +13,13 @@ ifeq ($(HAVE_RUBY_DEV),1) $(MAKE) -C $(dir)/ruby endif +python-cffi-bindings: lib/$(LINKER_NAME) +ifeq ($(HAVE_PYTHON_CFFI),1) + cd $(dir)/python-cffi && \ + ${PYTHON} setup.py build --build-lib build/stage && \ + mkdir -p build/stage/tests && cp tests/*.py build/stage/tests +endif + CLEAN += $(patsubst %,$(dir)/ruby/%, \ .RUBYARCHDIR.time \ Makefile database.o directory.o filenames.o\ @@ -20,3 +27,5 @@ CLEAN += $(patsubst %,$(dir)/ruby/%, \ status.o tags.o thread.o threads.o) CLEAN += bindings/ruby/.vendorarchdir.time + +CLEAN += bindings/python-cffi/build -- 2.24.0.rc1