From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 04 18:51:03 2019 Received: (at submit) by debbugs.gnu.org; 4 Feb 2019 23:51:03 +0000 Received: from localhost ([127.0.0.1]:59909 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gqo11-00068Z-5N for submit@debbugs.gnu.org; Mon, 04 Feb 2019 18:51:03 -0500 Received: from eggs.gnu.org ([209.51.188.92]:44387) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gqo10-000685-7A for submit@debbugs.gnu.org; Mon, 04 Feb 2019 18:51:02 -0500 Received: from lists.gnu.org ([209.51.188.17]:42386) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gqo0s-0004zh-9b for submit@debbugs.gnu.org; Mon, 04 Feb 2019 18:50:55 -0500 Received: from eggs.gnu.org ([209.51.188.92]:58763) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gqo0r-0001tV-7a for guix-patches@gnu.org; Mon, 04 Feb 2019 18:50:54 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=BAYES_40,UNPARSEABLE_RELAY autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gqo0p-0004yZ-ED for guix-patches@gnu.org; Mon, 04 Feb 2019 18:50:53 -0500 Received: from li622-129.members.linode.com ([212.71.249.129]:37290 helo=mira.cbaines.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gqo0p-0004xZ-8O for guix-patches@gnu.org; Mon, 04 Feb 2019 18:50:51 -0500 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 7BBA816B7D for ; Mon, 4 Feb 2019 23:50:48 +0000 (GMT) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id d591e201 for ; Mon, 4 Feb 2019 23:50:47 +0000 (UTC) From: Christopher Baines To: guix-patches@gnu.org Subject: [PATCH] gnu: artanis: Make some improvements. Date: Mon, 4 Feb 2019 23:50:47 +0000 Message-Id: <20190204235047.28301-1-mail@cbaines.net> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 212.71.249.129 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit 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: -0.0 (/) * gnu/packages/guile-xyz.scm (artanis): Remove a tab character by the revision. [arguments]: Patch the site-dir for the help command, to make it work. Wr= ap the art command such that it finds guile-json and guile-redis. --- gnu/packages/guile-xyz.scm | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 9640d17c3c..6c1e9c50ec 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -85,7 +85,7 @@ =20 (define-public artanis (let ((release "0.3.1") - (revision 0)) + (revision 0)) (package (name "artanis") (version (if (zero? revision) @@ -152,6 +152,13 @@ #:test-target "test" #:phases (modify-phases %standard-phases + (add-after 'unpack 'patch-site-dir + (lambda* (#:key outputs #:allow-other-keys) + (substitute* "artanis/commands/help.scm" + (("\\(%site-dir\\)") + (string-append "\"" + (assoc-ref outputs "out") + "/share/guile/site/2.2\""))))) (add-before 'install 'substitute-root-dir (lambda* (#:key outputs #:allow-other-keys) (let ((out (assoc-ref outputs "out"))) @@ -162,14 +169,16 @@ (mkdir-p (string-append out "/bin")) ;for the `art' exe= cutable #t))) (add-after 'install 'wrap-art - (lambda* (#:key outputs #:allow-other-keys) + (lambda* (#:key inputs outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) (bin (string-append out "/bin")) (scm (string-append out "/share/guile/site/2.2")) (go (string-append out "/lib/guile/2.2/site-ccach= e"))) (wrap-program (string-append bin "/art") - `("GUILE_LOAD_PATH" ":" prefix (,scm)) - `("GUILE_LOAD_COMPILED_PATH" ":" prefix (,go))) + `("GUILE_LOAD_PATH" ":" prefix + (,scm ,(getenv "GUILE_LOAD_PATH"))) + `("GUILE_LOAD_COMPILED_PATH" ":" prefix + (,go ,(getenv "GUILE_LOAD_COMPILED_PATH")))) #t)))))) (synopsis "Web application framework written in Guile") (description "GNU Artanis is a web application framework written i= n Guile --=20 2.20.1 From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 05 04:17:39 2019 Received: (at 34324) by debbugs.gnu.org; 5 Feb 2019 09:17:39 +0000 Received: from localhost ([127.0.0.1]:60052 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gqwrK-0003Nw-VZ for submit@debbugs.gnu.org; Tue, 05 Feb 2019 04:17:39 -0500 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21065) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gqwrH-0003Nm-PQ for 34324@debbugs.gnu.org; Tue, 05 Feb 2019 04:17:37 -0500 ARC-Seal: i=1; a=rsa-sha256; t=1549358246; cv=none; d=zoho.com; s=zohoarc; b=RxyVQ96pY0xwWMf8zEFqBMs2EbpJlu7tGGEBqes18j/OXelcMMkETA4rkjiPQFCtrIgtTFtgX2LtJeEs8bo+ieLOgu3UBK2WYb/gWWjaue5zZuj/+e7Zfk9kUIgVrdni9drGpdDB3eyhiTnQ0GqIsuUljme1wIoRNDxGldbE3bI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1549358246; h=Content-Type:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To:ARC-Authentication-Results; bh=npJv5YCmAAVft0qT7w/xWUVZFQrfUpoj6Tv5hTUpxkE=; b=ObwuiUxWjDkosUl931AG8HGv2xDHId+C8a74pcSw0TkLBiltxPRtRjSZLvG8YjBGszEpKe34jYt8mi3ns6XtzrKDCtwvS1CtEwtiGFp2uaRsJZ+aKfI+fuNDQakXNzi5GxgKoUHsYATMGovsVFfWyiNWyLo1a6+n/vLCb0MshIw= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1549358246; s=zoho; d=elephly.net; i=rekado@elephly.net; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type; l=314; bh=npJv5YCmAAVft0qT7w/xWUVZFQrfUpoj6Tv5hTUpxkE=; b=LTR9Bdn/hnok44sgBDzaUjqy4Sz8ipWWYmz60b9/LTp5JOR58911EMLfUS8Ubn5M lQxS4PGXWoK4WvSIVvessSB+SUnQmLEl43s5eB3tywkA/ReviWo0pUC3jS/SajnhENF w/m6njqN4es8qfdawJ0lTCOfn22L0qF/ZS2VLlSw= Received: from localhost (p3E9E957E.dip0.t-ipconnect.de [62.158.149.126]) by mx.zohomail.com with SMTPS id 1549358243595200.68466485612362; Tue, 5 Feb 2019 01:17:23 -0800 (PST) References: <20190204235047.28301-1-mail@cbaines.net> User-agent: mu4e 1.0; emacs 26.1 From: Ricardo Wurmus To: Christopher Baines Subject: Re: [bug#34324] [PATCH] gnu: artanis: Make some improvements. In-reply-to: <20190204235047.28301-1-mail@cbaines.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: Tue, 05 Feb 2019 10:17:20 +0100 Message-ID: <871s4miogv.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain X-ZohoMailClient: External X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 34324 Cc: 34324@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: -1.0 (-) Christopher Baines writes: > * gnu/packages/guile-xyz.scm (artanis): Remove a tab character by the > revision. > [arguments]: Patch the site-dir for the help command, to make it work. Wrap > the art command such that it finds guile-json and guile-redis. LGTM, thanks! -- Ricardo From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 05 04:25:19 2019 Received: (at 34324-done) by debbugs.gnu.org; 5 Feb 2019 09:25:20 +0000 Received: from localhost ([127.0.0.1]:60082 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gqwyl-0003cF-Ja for submit@debbugs.gnu.org; Tue, 05 Feb 2019 04:25:19 -0500 Received: from li622-129.members.linode.com ([212.71.249.129]:36262 helo=mira.cbaines.net) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gqwyj-0003c6-BZ for 34324-done@debbugs.gnu.org; Tue, 05 Feb 2019 04:25:18 -0500 Received: from localhost (cpc102582-walt20-2-0-cust14.13-2.cable.virginm.net [86.27.34.15]) by mira.cbaines.net (Postfix) with ESMTPSA id 99D6516B89; Tue, 5 Feb 2019 09:25:15 +0000 (GMT) Received: from capella (localhost [127.0.0.1]) by localhost (OpenSMTPD) with ESMTP id b7a84cdc; Tue, 5 Feb 2019 09:25:15 +0000 (UTC) References: <20190204235047.28301-1-mail@cbaines.net> <871s4miogv.fsf@elephly.net> User-agent: mu4e 1.0; emacs 26.1 From: Christopher Baines To: Ricardo Wurmus Subject: Re: [bug#34324] [PATCH] gnu: artanis: Make some improvements. In-reply-to: <871s4miogv.fsf@elephly.net> Date: Tue, 05 Feb 2019 09:25:15 +0000 Message-ID: <87y36u60zo.fsf@cbaines.net> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 34324-done Cc: 34324-done@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: -1.0 (-) --=-=-= Content-Type: text/plain Ricardo Wurmus writes: > Christopher Baines writes: > >> * gnu/packages/guile-xyz.scm (artanis): Remove a tab character by the >> revision. >> [arguments]: Patch the site-dir for the help command, to make it work. Wrap >> the art command such that it finds guile-json and guile-redis. > > LGTM, thanks! Great, I've pushed this as fd9a6d83c280593bd61805a78a9f45ced3e6a527. Thanks for taking a look :) --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAEBCgB9FiEEPonu50WOcg2XVOCyXiijOwuE9XcFAlxZVntfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNF ODlFRUU3NDU4RTcyMEQ5NzU0RTBCMjVFMjhBMzNCMEI4NEY1NzcACgkQXiijOwuE 9Xda0g/+JHsUf8YoPUKIP0uYodC1hxavX9tsKaS+qUdnP3bmYvI+c6sTnXuJw1NG ypWJoGUJ9UUPCxSEvNmfWT5o0qVAq583hNrEjM7qx6oao5KwjMUIOzmsgLqQBtmh XLfsZopTUCPDRGo6l3/7Smiz9uSCANSpkWJlyJEccQLn/2G7KmT3v1QmhezfjRk+ 0hVNmQnEIiVJYaKRS9F0dK9DyEsObk5UN4YPXz9VyhK4xo/5XARe1E1GUK1ZIVbi N9rsJ0w7qiCDiQN/AeW5uWA9qpUUrVU5rk2axX/CkEfHThrX7gvKiZ8hjjh6m4eF cECxOILz3JO3il23Y+JggZxUk4KGAFHb9syh9su5e+VFpA4oIx8mH/LjpcULYmw9 ChOaWRILhT7CdnbuF5pJEh+biGxsdY7v7xxd68+FwoH//T/YIBLe4081CrjtTUJb vPBU5DotohtGxZ9TjGM/2WeJd+7ltwwuE+lXtluV11ZQL2Wmd6nBRXDztzBhk93w EgFnnaRs4JcZRvJehAKPHx+FXYuf10ywx3Fz4251QSSvYcfAYPYFvJlMA2jBVDOF 1LYOt6Mwr03jbvWlYk8sb1l3cxJ4SzkrfbjdajWoH///ZY70o3ifBgiltwaP1XNb o96hNc5ZQ1TiWXXZbRMAuE+preoQcRb8QDah2PPgONy1OkFS/sQ= =QMFC -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Jun 21 12:25:16 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 05 Mar 2019 12:24:05 +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