From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 17 16:04:20 2017 Received: (at submit) by debbugs.gnu.org; 17 Jul 2017 20:04:20 +0000 Received: from localhost ([127.0.0.1]:44859 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dXCFb-00063H-6i for submit@debbugs.gnu.org; Mon, 17 Jul 2017 16:04:20 -0400 Received: from eggs.gnu.org ([208.118.235.92]:35971) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dXCFZ-000632-2O for submit@debbugs.gnu.org; Mon, 17 Jul 2017 16:04:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXCFT-0005Wp-0k for submit@debbugs.gnu.org; Mon, 17 Jul 2017 16:04:07 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-0.5 required=5.0 tests=BAYES_05 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:60875) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dXCFS-0005WT-Th for submit@debbugs.gnu.org; Mon, 17 Jul 2017 16:04:06 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55160) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXCFR-0005HU-JI for guix-patches@gnu.org; Mon, 17 Jul 2017 16:04:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXCFO-0005Rf-PN for guix-patches@gnu.org; Mon, 17 Jul 2017 16:04:05 -0400 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21102) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dXCFO-0005Pj-GQ for guix-patches@gnu.org; Mon, 17 Jul 2017 16:04:02 -0400 Received: from localhost (port-92-200-49-126.dynamic.qsc.de [92.200.49.126]) by mx.zohomail.com with SMTPS id 1500321835707275.4388218675808; Mon, 17 Jul 2017 13:03:55 -0700 (PDT) From: Ricardo Wurmus To: guix-patches@gnu.org Subject: [PATCH 1/3] gnu: Add python-xapian-bindings. Date: Mon, 17 Jul 2017 22:03:48 +0200 Message-Id: <20170717200350.29162-1-rekado@elephly.net> X-Mailer: git-send-email 2.13.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-ZohoMailClient: External X-ZohoMail: Z_26063301 SPT_1 Z_26062608 SPT_0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit Cc: Ricardo Wurmus X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) * gnu/packages/search.scm (python-xapian-bindings): New variable. --- gnu/packages/search.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm index 8651b985e..cc8c0630b 100644 --- a/gnu/packages/search.scm +++ b/gnu/packages/search.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2014 Mark H Weaver ;;; Copyright © 2015, 2016 Eric Bavier ;;; Copyright © 2017 Thomas Danckaert +;;; Copyright © 2017 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -30,6 +31,7 @@ #:use-module (gnu packages databases) #:use-module (gnu packages linux) #:use-module (gnu packages perl) + #:use-module (gnu packages python) #:use-module (gnu packages web) #:use-module (gnu packages xml)) @@ -70,6 +72,32 @@ rich set of boolean query operators.") (home-page "https://xapian.org/") (license (list gpl2+ bsd-3 x11)))) +(define-public python-xapian-bindings + (package (inherit xapian) + (name "python-xapian-bindings") + (version (package-version xapian)) + (source (origin + (method url-fetch) + (uri (string-append "https://oligarchy.co.uk/xapian/" version + "/xapian-bindings-" version ".tar.xz")) + (sha256 + (base32 + "0fca9nsf7pj3fq991xcm5iainz3s8yqik4ycvavm09y486n3wciv")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags '("--with-python3") + #:make-flags + (list (string-append "pkgpylibdir=" + (assoc-ref %outputs "out") + "/lib/python3.5/site-packages/xapian")))) + (inputs + `(("python" ,python) + ("python-sphinx" ,python-sphinx) ; for documentation + ("xapian" ,xapian) + ("zlib" ,zlib))) + (synopsis "Python bindings for the Xapian search engine library") + (license gpl2+))) + (define-public libtocc (package (name "libtocc") -- 2.13.3 From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 18 07:59:42 2017 Received: (at 27740) by debbugs.gnu.org; 18 Jul 2017 11:59:42 +0000 Received: from localhost ([127.0.0.1]:45435 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dXRAE-0008MK-CQ for submit@debbugs.gnu.org; Tue, 18 Jul 2017 07:59:42 -0400 Received: from eggs.gnu.org ([208.118.235.92]:58809) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dXRAD-0008M7-0T for 27740@debbugs.gnu.org; Tue, 18 Jul 2017 07:59:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXRA4-0007CC-Is for 27740@debbugs.gnu.org; Tue, 18 Jul 2017 07:59:35 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:50441) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXRA4-0007C7-F5; Tue, 18 Jul 2017 07:59:32 -0400 Received: from [193.50.110.220] (port=39808 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dXRA3-0006vv-UV; Tue, 18 Jul 2017 07:59:32 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Ricardo Wurmus Subject: Re: [bug#27740] [PATCH 1/3] gnu: Add python-xapian-bindings. References: <20170717200350.29162-1-rekado@elephly.net> X-URL: http://www.fdn.fr/~lcourtes/ X-Revolutionary-Date: 30 Messidor an 225 de la =?utf-8?Q?R=C3=A9volution?= X-PGP-Key-ID: 0x090B11993D9AEBB5 X-PGP-Key: http://www.fdn.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 X-OS: x86_64-unknown-linux-gnu Date: Tue, 18 Jul 2017 13:59:30 +0200 In-Reply-To: <20170717200350.29162-1-rekado@elephly.net> (Ricardo Wurmus's message of "Mon, 17 Jul 2017 22:03:48 +0200") Message-ID: <87lgnmymzh.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 27740 Cc: 27740@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Ricardo Wurmus skribis: > * gnu/packages/search.scm (python-xapian-bindings): New variable. LGTM, thanks! From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 16 04:56:56 2017 Received: (at 27740-done) by debbugs.gnu.org; 16 Aug 2017 08:56:56 +0000 Received: from localhost ([127.0.0.1]:40194 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dhu8G-0003Cr-1K for submit@debbugs.gnu.org; Wed, 16 Aug 2017 04:56:56 -0400 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21111) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dhu8D-0003Ci-MQ for 27740-done@debbugs.gnu.org; Wed, 16 Aug 2017 04:56:54 -0400 Received: from localhost (141.80.247.215 [141.80.247.215]) by mx.zohomail.com with SMTPS id 1502873807475468.7067197609373; Wed, 16 Aug 2017 01:56:47 -0700 (PDT) References: <20170717200350.29162-1-rekado@elephly.net> User-agent: mu4e 0.9.18; emacs 25.2.1 From: Ricardo Wurmus To: 27740-done@debbugs.gnu.org Subject: Re: [bug#27740] [PATCH 1/3] gnu: Add python-xapian-bindings. In-reply-to: <20170717200350.29162-1-rekado@elephly.net> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Wed, 16 Aug 2017 10:56:45 +0200 Message-ID: <87ziazki0i.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain X-ZohoMailClient: External X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 27740-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) > * gnu/packages/search.scm (python-xapian-bindings): New variable. -- Ricardo GPG: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC https://elephly.net From unknown Fri Sep 05 15:37:03 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 13 Sep 2017 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator