From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59521) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dpH2B-0004YY-Hi for guix-patches@gnu.org; Tue, 05 Sep 2017 12:49:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dpH26-0004NG-Fj for guix-patches@gnu.org; Tue, 05 Sep 2017 12:49:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:43011) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dpH26-0004N5-BN for guix-patches@gnu.org; Tue, 05 Sep 2017 12:49:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dpH25-0000QU-Sd for guix-patches@gnu.org; Tue, 05 Sep 2017 12:49:01 -0400 Subject: [bug#28359] [PATCH] gnu: notmuch-addrlookup-c: Update to 8-1.88f156d. References: <150462834044.9803.18002224745520327188@x220> In-Reply-To: <150462834044.9803.18002224745520327188@x220> Resent-Message-ID: Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha256"; boundary="===============8893579416394922596==" MIME-Version: 1.0 Content-Disposition: inline Message-ID: <150463012448.9803.4142562239000467283@x220> From: Troy Sankey Date: Tue, 05 Sep 2017 12:48:44 -0400 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 28359@debbugs.gnu.org --===============8893579416394922596== Content-Type: multipart/mixed; boundary="===============8043156644110111601==" MIME-Version: 1.0 --===============8043156644110111601== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Bleh, here's an updated patch without my indentation error. Troy --===============8043156644110111601== Content-Type: text/x-diff; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="0001-gnu-notmuch-addrlookup-c-Update-to-8-1.88f156d.patch" From=20c3f56cb191a4a3e17052f2f41da18909c87e8692 Mon Sep 17 00:00:00 2001 From: Troy Sankey Date: Tue, 5 Sep 2017 11:56:34 -0400 Subject: [PATCH] gnu: notmuch-addrlookup-c: Update to 8-1.88f156d. * gnu/packages/mail.scm (notmuch-addrlookup-c): Update to 8-1.88f156d. [source]: Use git-fetch. --- gnu/packages/mail.scm | 82 +++++++++++++++++++++++++++--------------------= ---- 1 file changed, 44 insertions(+), 38 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 2a759c3d2..50ee17b56 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -727,45 +727,51 @@ ing, and tagging large collections of email messages.= ") (license gpl3+))) = (define-public notmuch-addrlookup-c - (package - (name "notmuch-addrlookup-c") - (version "7") - (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/aperezdc/" name "/archive/v" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "0rslg2ifgyhl6asv3yr1f62m9xjfcinv7i6qb07h2k217jqlmrri")))) - (build-system gnu-build-system) - (arguments - '(#:tests? #f ; no tests - #:make-flags (list "CC=3Dgcc" - (string-append "PREFIX=3D" - (assoc-ref %outputs "out"))) - #:phases (modify-phases %standard-phases - (delete 'configure) - ;; Remove vim code completion config, it's not needed to - ;; build (or be patched). - (add-before 'patch-source-shebangs 'delete-ycm-file - (lambda _ (delete-file ".ycm_extra_conf.py")= )) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let ((bin (string-append - (assoc-ref outputs "out") "/bin")= )) - (install-file "notmuch-addrlookup" bin)))))= )) - (native-inputs - `(("pkg-config" ,pkg-config))) - (inputs - `(("glib" ,glib) - ("notmuch" ,notmuch))) - (home-page "https://github.com/aperezdc/notmuch-addrlookup-c") - (synopsis "Address lookup tool for Notmuch") - (description "This is an address lookup tool using a Notmuch database, + ;; This commit includes a compatibility fix for notmuch-0.25, and is not + ;; currently part of any release. Please update this package when + ;; notmuch-addrlookup-c-9 is released. + (let ((commit "88f156d04990a71c6ad6fc2757b537b44e3c4d00") + (revision "1")) ;Guix package revision + (package + (name "notmuch-addrlookup-c") + (version (string-append "8-" revision "." + (string-take commit 7))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/aperezdc/notmuch-addrlookup= -c.git") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0v0wzs7qzy4n1hbql8s10qrwgalcxdzbxf8pj6cii1pv2jwmkxbm"))= )) + (build-system gnu-build-system) + (arguments + '(#:tests? #f ; no tests + #:make-flags (list "CC=3Dgcc" + (string-append "PREFIX=3D" + (assoc-ref %outputs "out"))) + #:phases (modify-phases %standard-phases + (delete 'configure) + ;; Remove vim code completion config, it's not needed = to + ;; build (or be patched). + (add-before 'patch-source-shebangs 'delete-ycm-file + (lambda _ (delete-file ".ycm_extra_conf.py= "))) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append + (assoc-ref outputs "out") "/bin= "))) + (install-file "notmuch-addrlookup" bin)))= )))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("glib" ,glib) + ("notmuch" ,notmuch))) + (home-page "https://github.com/aperezdc/notmuch-addrlookup-c") + (synopsis "Address lookup tool for Notmuch") + (description "This is an address lookup tool using a Notmuch databas= e, useful for email address completion.") - (license license:expat))) + (license license:expat)))) = (define-public python-notmuch (package -- = 2.13.3 --===============8043156644110111601==-- --===============8893579416394922596== MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Description: signature Content-Type: application/pgp-signature; name="signature.asc"; charset="us-ascii" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEE0zLJ6STd4Cp+CgbIgs677ofYV8IFAlmu1WcACgkQgs677ofY V8JtEQ/8DXqR8veG5WjyCvGnyweo4qWDNHLvhJxqpTGgvGNBKB0kWQ0G3rZoiQCV GZ3KfKCjgz/k4gMgUAvOihfoQBaE6wP0U/AaA2XKHMorc6zfuBYxG/mk0UxjLgjz YOETdVnM+I4/La9J8GbCdp1cFrTgpRqZdJgJoL/chNHKcEPXKD+6jndkgGUbpelg vZkOynKzthcuZmhngDo3Yijl6oF6cZALZ+lqj6Y1ZoGErmIaDxP6NRoCTulNmDdW a3T3fJJZdgD2kUHHrB5ykTkM/COkrd4uWmI4iBHASjD8K4WLDT2G8Pb0TGGNqDll WMzrEL3jEukko/EzPeaOVPJL3FJ0WPS4giQ03+/7kC6TuT2nsWCe/KCxBsxRAd58 HA7+ty2cTosWWaDXRilNMJYCprLNqArafXHgBogo/wgyALSfzBTfKLj43keuyqyq Klri+o+85xaGzdxliUUdrjd8wSBAtyaJ+iIx48k0NzhNBV/5rmB9jDp9GUM9Xr1q nllWhxPFeaoXEQhQxJwh1CB0MRilX/uq0ZOcxUfi7u7RZCfEK9z0eZLVhsgHzoTg nIE4d2Ub5c8XWhX80xF60CrGQ83jjRoBRkuimSN7h+txIKst9Y4tixKpBfIAPRQN f+fFTdqq/IocaF2QGttWERD/+PIzwqWgQVPJykUgnIyE06jOVVM= =W9B0 -----END PGP SIGNATURE----- --===============8893579416394922596==--