From unknown Wed Jun 18 23:07:36 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#49199 <49199@debbugs.gnu.org> To: bug#49199 <49199@debbugs.gnu.org> Subject: Status: [PATCH core-updates] add package-db to runhaskell (haskell-build-system) Reply-To: bug#49199 <49199@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:07:36 +0000 retitle 49199 [PATCH core-updates] add package-db to runhaskell (haskell-bu= ild-system) reassign 49199 guix-patches submitter 49199 John Kehayias severity 49199 normal tag 49199 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 23 18:09:18 2021 Received: (at submit) by debbugs.gnu.org; 23 Jun 2021 22:09:18 +0000 Received: from localhost ([127.0.0.1]:42003 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lwB3e-0007IN-HP for submit@debbugs.gnu.org; Wed, 23 Jun 2021 18:09:18 -0400 Received: from lists.gnu.org ([209.51.188.17]:59462) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lwB3c-0007IF-Dc for submit@debbugs.gnu.org; Wed, 23 Jun 2021 18:09:17 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:35180) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lwB3b-0002iO-VE for guix-patches@gnu.org; Wed, 23 Jun 2021 18:09:16 -0400 Received: from mail-0201.mail-europe.com ([51.77.79.158]:52910) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lwB3Z-00048k-FW for guix-patches@gnu.org; Wed, 23 Jun 2021 18:09:15 -0400 Date: Wed, 23 Jun 2021 22:09:05 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1624486147; bh=YN4vnqp+2uYJmlPSI+k6y9Ku0EVdM8xPo46tVwlxMY4=; h=Date:To:From:Reply-To:Subject:From; b=rbfohS1JkkC1JaWM/vq1nLr37mbYSUddKmBiVU1R5F4HkWfu6kmLPvHzEOvnpaxl7 a8hPRdRojsmN7knSSiYvK8e2vwX+F+rSadVcnqB1V5DTDxBqAvuZDeb247tbC5Rwar bp9WtIhU07ooJNdoFzpTJu4ts2gNlJ5Trq23O4x8= To: "guix-patches@gnu.org" From: John Kehayias Subject: [PATCH core-updates] add package-db to runhaskell (haskell-build-system) Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="b1_PRX7x5f4c4W9lUlM1wKnA74r1u62yuIRRIEgg64" X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch Received-SPF: pass client-ip=51.77.79.158; envelope-from=john.kehayias@protonmail.com; helo=mail-0201.mail-europe.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.5 (/) 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: , Reply-To: John Kehayias Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) This is a multi-part message in MIME format. --b1_PRX7x5f4c4W9lUlM1wKnA74r1u62yuIRRIEgg64 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hello, This is a patch to fix issue #48944 as well as more broadly an issue of Has= kell packages that need modules at the configure step. Currently the packag= e database is not passed to runhaskell directly, which means runhaskell Set= up.hs configure does not have outside modules available. This blocks packag= es that need things like cabal-doctest or gtk2hs-buildtools like ghc-cairo = (which has a custom build process in the package currently, for this reason= ). Comments in ghc-cairo and for other packages with this need, suggest the= change made in this patch. The simplest change I saw was to make the package database passed to runhas= kell on any command; not sure if this would be better for just configure. I= t may be possible to do this just passing the actual needed packages with -= package-id, as suggested in https://github.com/tweag/rules_haskell/issues/1= 314 However, I have not tried that and seemed more complicated than needed.= Also, I did not modify the message printed as it already has the package-d= b in params, but perhaps better to be clear the exact command being run? I have built many Haskell packages with this change and it works well for m= e, fixing the reported issue and packages I'm building not yet in guix. Giv= en this changes the build command for all Haskell packages, would be happy = for other tests to be run. John --b1_PRX7x5f4c4W9lUlM1wKnA74r1u62yuIRRIEgg64 Content-Type: text/x-patch; name=runhaskell-add-pkgdb.patch Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename=runhaskell-add-pkgdb.patch ZGlmZiAtLWdpdCBhL2d1aXgvYnVpbGQvaGFza2VsbC1idWlsZC1zeXN0ZW0uc2NtIGIvZ3VpeC9i dWlsZC9oYXNrZWxsLWJ1aWxkLXN5c3RlbS5zY20KaW5kZXggMjgyNTNjZTJmMC4uYmUyMGYxM2Ux MCAxMDA2NDQKLS0tIGEvZ3VpeC9idWlsZC9oYXNrZWxsLWJ1aWxkLXN5c3RlbS5zY20KKysrIGIv Z3VpeC9idWlsZC9oYXNrZWxsLWJ1aWxkLXN5c3RlbS5zY20KQEAgLTYzLDEzICs2MywxNCBAQAog ICAgICAgICAgICAgICAgICAgICAgKChmaWxlLWV4aXN0cz8gIlNldHVwLmxocyIpCiAgICAgICAg ICAgICAgICAgICAgICAgIlNldHVwLmxocyIpCiAgICAgICAgICAgICAgICAgICAgICAoZWxzZQot ICAgICAgICAgICAgICAgICAgICAgICNmKSkpKQorICAgICAgICAgICAgICAgICAgICAgICNmKSkp CisgICAgICAgIChwa2dkYiAoc3RyaW5nLWFwcGVuZCAiLXBhY2thZ2UtZGI9IiAldG1wLWRiLWRp cikpKQogICAgIChpZiBzZXR1cC1maWxlCiAgICAgICAgIChiZWdpbgogICAgICAgICAgIChmb3Jt YXQgI3QgInJ1bm5pbmcgXCJydW5oYXNrZWxsIFNldHVwLmhzXCIgd2l0aCBjb21tYW5kIH5zIFwK IGFuZCBwYXJhbWV0ZXJzIH5zfiUiCiAgICAgICAgICAgICAgICAgICBjb21tYW5kIHBhcmFtcykK LSAgICAgICAgICAoYXBwbHkgaW52b2tlICJydW5oYXNrZWxsIiBzZXR1cC1maWxlIGNvbW1hbmQg cGFyYW1zKSkKKyAgICAgICAgICAoYXBwbHkgaW52b2tlICJydW5oYXNrZWxsIiBwa2dkYiBzZXR1 cC1maWxlIGNvbW1hbmQgcGFyYW1zKSkKICAgICAgICAgKGVycm9yICJubyBTZXR1cC5ocyBub3Ig U2V0dXAubGhzIGZvdW5kIikpKSkKIAogKGRlZmluZSogKGNvbmZpZ3VyZSAjOmtleSBvdXRwdXRz IGlucHV0cyB0ZXN0cz8gKGNvbmZpZ3VyZS1mbGFncyAnKCkpCi0tIAoyLjMyLjAKCg== --b1_PRX7x5f4c4W9lUlM1wKnA74r1u62yuIRRIEgg64-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 02 03:39:03 2021 Received: (at 49199) by debbugs.gnu.org; 2 Jul 2021 07:39:03 +0000 Received: from localhost ([127.0.0.1]:34143 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lzDlP-0004Mn-Kr for submit@debbugs.gnu.org; Fri, 02 Jul 2021 03:39:03 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:54905) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lzDlO-0004M8-Fw for 49199@debbugs.gnu.org; Fri, 02 Jul 2021 03:39:03 -0400 Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.nyi.internal (Postfix) with ESMTP id 0BE095C00E5 for <49199@debbugs.gnu.org>; Fri, 2 Jul 2021 03:38:57 -0400 (EDT) Received: from imap43 ([10.202.2.93]) by compute2.internal (MEProxy); Fri, 02 Jul 2021 03:38:57 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=munksgaard.me; h=mime-version:message-id:date:from:to:subject:content-type; s= fm1; bh=wzgNqe+/KmLJ8uaBUyCJjKohd+ysMD8BLqa9+9tZgEE=; b=LevmqPyu KknqQhEyG5QSvktoKqOFyG+Qmjvsf6Fev+S5NxP5kGaz1rDaw+71eIKDVzXJyiwf ZLWzg/3JsDHskh27pps4OFImZzRiuGHG3ZGUfbUrokW+FUC33LJdbeJ4XERbKL6+ XaHaCErsiWkWvq3Jq7rL/WEV0Iai1347qoLN57M7uwFmoX4syXIuHBNbjpJUnm6b Fyj+xZEGtE+RTmpeyEFdDKFD8e6K9y1DEoQX/TjEE6msdvaTrStfzMX9pq1WejBH 48WmSqQV/A2eC1DPDnX6T7kFog9oIWJThKANq0StRYLjOV2D+/hcbWC4aMah0k/x IzX00PFHbHXv6Q== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:message-id :mime-version:subject:to:x-me-proxy:x-me-proxy:x-me-sender :x-me-sender:x-sasl-enc; s=fm3; bh=wzgNqe+/KmLJ8uaBUyCJjKohd+ysM D8BLqa9+9tZgEE=; b=vCo3EQAGKYNaJZIpfKiaUYTJLlercojWHZ7RLsFdkPLLo 2Y/i8TclSkZL/vwCSlkvtKPjZE/Oax8ME8GcLSpV41rSqykHIr1nRKz/prICC51W tLjY3RDokjOgDe9HLpbi4L/HIxDOEytNzRQMkg+cvAQpce5Yx83+R85/l/n561Jc rYFzj/U8i55w/68nKrjkOi7ZXOFKNc/7HZeqkjbbeNz+xIDT58pLjKfwZQLkykpq D5sWdgjqKXroRzvKDpKiZ9X5pNKdir6ibBg56k5FyfmMfq1mayNeoJsJ7L7AlB3f rl/9tJXcCOCJZWVMLsPGFl2Dg4QY3HY1PysE6BWNQ== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduledrfeeijedguddulecutefuodetggdotefrod ftvfcurfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfgh necuuegrihhlohhuthemuceftddtnecugfhmphhthicushhusghjvggtthculddutddmne cujfgurhepofgfggfkfffhvffutgesthdtredtreertdenucfhrhhomhepfdfrhhhilhhi phcuofhunhhkshhgrggrrhgufdcuoehphhhilhhiphesmhhunhhkshhgrggrrhgurdhmvg eqnecuggftrfgrthhtvghrnhepgeevtdeljeetjeefgfekjeffjeevgffgvefgkeeludeu feegudfggfdtvdetgeeunecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehmrg hilhhfrhhomhepphhhihhlihhpsehmuhhnkhhsghgrrghrugdrmhgv X-ME-Proxy: Received: by mailuser.nyi.internal (Postfix, from userid 501) id C45A9AC0073; Fri, 2 Jul 2021 03:38:56 -0400 (EDT) X-Mailer: MessagingEngine.com Webmail Interface User-Agent: Cyrus-JMAP/3.5.0-alpha0-530-gd0c265785f-fm-20210616.002-gd0c26578 Mime-Version: 1.0 Message-Id: <4f8c3366-edbf-4d3a-be89-4d012fca1f8d@www.fastmail.com> Date: Fri, 02 Jul 2021 09:38:32 +0200 From: "Philip Munksgaard" To: 49199@debbugs.gnu.org Subject: Content-Type: text/plain X-Spam-Score: 1.3 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: This works for me. How can we get it merged? Content analysis details: (1.3 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at https://www.dnswl.org/, low trust [66.111.4.28 listed in list.dnswl.org] -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -0.0 SPF_PASS SPF: sender matches SPF record 0.0 RCVD_IN_MSPIKE_H3 RBL: Good reputation (+3) [66.111.4.28 listed in wl.mailspike.net] 0.0 RCVD_IN_MSPIKE_WL Mailspike good senders 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: 49199 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.3 (/) This works for me. How can we get it merged? From debbugs-submit-bounces@debbugs.gnu.org Sat Jul 03 20:47:31 2021 Received: (at 49199) by debbugs.gnu.org; 4 Jul 2021 00:47:31 +0000 Received: from localhost ([127.0.0.1]:40100 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lzqIE-0003cm-W4 for submit@debbugs.gnu.org; Sat, 03 Jul 2021 20:47:31 -0400 Received: from mail-40134.protonmail.ch ([185.70.40.134]:43710) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lzqID-0003cY-5O for 49199@debbugs.gnu.org; Sat, 03 Jul 2021 20:47:29 -0400 Date: Sun, 04 Jul 2021 00:47:21 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1625359643; bh=Ctp8It4rhKqhvUCDHm3CmZX6EwiPuxmO206+8RIGaFg=; h=Date:To:From:Reply-To:Subject:From; b=HwOj6ydjOwQTurICWkiYcYZpzNxJD0nELBciKya1shmNLtyWg0Vl7D3/GfzXmmACI +t+I7ysFl3TyCMqNmor7YxK61fR/nWey1WwOmCXdd+VpnHSoysW5ZaUCqknVimidNO n5pL4TKU7uVLQbDU41Q4s5eWKJ0D11jmamfEdF2s= To: "49199@debbugs.gnu.org" <49199@debbugs.gnu.org> From: John Kehayias Subject: [PATCH core-updates] add package-db to runhaskell (haskell-build-system) Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 49199 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: , Reply-To: John Kehayias Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) I don't know, I'm rather new here :-) We'll need one of the main devs I gue= ss to do it? The patch I submitted was actually from the master branch, but= haskell-build-system is identical in core-updates if I'm reading the git l= og correctly. But I'm happy to do more testing on the core-updates branch. From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 05 12:17:48 2021 Received: (at 49199) by debbugs.gnu.org; 5 Jul 2021 16:17:48 +0000 Received: from localhost ([127.0.0.1]:46568 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m0RI4-0007pd-1v for submit@debbugs.gnu.org; Mon, 05 Jul 2021 12:17:48 -0400 Received: from mail-4317.protonmail.ch ([185.70.43.17]:24775) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m0RI2-0007pN-GU for 49199@debbugs.gnu.org; Mon, 05 Jul 2021 12:17:47 -0400 Date: Mon, 05 Jul 2021 16:17:38 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1625501860; bh=V3DGgXqjCTc9LA01aZ+FkWPZ2dAatcDw81BgoUh5HnM=; h=Date:To:From:Reply-To:Subject:From; b=OCxXXVn/bpPyYjjmJtvEjd+UEpgnIJ4n3t+6MD+8fMtP9/+h8imBm6GsonSzGcIE/ 8JQhCbjKw8aH6WLjx0mnPgFPA8RF/6uTsVhx4SVcycQrki42uGc8Q2SqURnAXBpEmI tl13dzwBsofPwpWHpVg8quoAko3Wk/8bCOhLreP4= To: "49199@debbugs.gnu.org" <49199@debbugs.gnu.org> From: John Kehayias Subject: [PATCH core-updates] add package-db to runhaskell (haskell-build-system) Message-ID: <1r1sgPl4271Vsgu7xP8l2K-OzcPNJSXodvApw6-GmJYfzwewT07S4q0U2qV5B47iLBySpTXCzI1qHvH4RS0kKzBHBJYOEkWCl9UJyVKLHNk=@protonmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.2 required=10.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM shortcircuit=no autolearn=disabled version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on mailout.protonmail.ch X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 49199 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: , Reply-To: John Kehayias Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Looks like you (and me) have run into several of these problems that could = be revised with some fixes to haskell-build-system and the hackage importer= . On #guix it was discussed having a branch to try out these changes and le= verage the CI to see what breaks on making changes to the build system, ghc= version, etc. We'll need someone to create and let us push there, not sure who to ask or = how to get started on that... From debbugs-submit-bounces@debbugs.gnu.org Tue Jul 20 18:23:00 2021 Received: (at 49199-done) by debbugs.gnu.org; 20 Jul 2021 22:23:01 +0000 Received: from localhost ([127.0.0.1]:35614 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5y8i-0004kC-OR for submit@debbugs.gnu.org; Tue, 20 Jul 2021 18:23:00 -0400 Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21196) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m5y8h-0004k4-9w for 49199-done@debbugs.gnu.org; Tue, 20 Jul 2021 18:22:59 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1626819772; cv=none; d=zohomail.com; s=zohoarc; b=YkrQUBwNPQrC5qNOe/UFMeUQ3vbjJ53KzlAiPd8QReuPnWnDUrSy/mVAD3y1ccQSbqgBqADdohl4XmReACuHII3iqeUvSlHCoZmTUAecICy15rq20CdhboCxTMs/MPjwbSaK9yfcgvqwH51zYU68bjUjP4FuQfkDl4mk/dAPsjE= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1626819772; h=Content-Type:Cc:Date:From:MIME-Version:Message-ID:Subject:To; bh=glIOHgYZ92stQ5k6yvmMvY2h3hrn/C9h36RMDxRLgKo=; b=Vhixhqm1F3cgIzwFpRT0EA35lV/a7IcmkPkjVsk94Mjd563PAyMayuSEJQik5RC6vvZkzwUalz6feOr+Im7Njvmckn7GeIMhdSCMoMQihqOZxgL44rn5fDCS3CETahnD8qRz4ejgOUrGClroXcroHpfm7BCb0SXOPoLB6qmBy+Q= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@elephly.net; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1626819772; s=zoho; d=elephly.net; i=rekado@elephly.net; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type; bh=glIOHgYZ92stQ5k6yvmMvY2h3hrn/C9h36RMDxRLgKo=; b=exp8xJ5HzYozRzv7kF5S83oEvCFgnzp/9zyrZ3qFCrVe97DdnUdO53JTANKo6MVL DBxdLGxsVQq8A2vH49fhEWPck/zPoG61hhQLE4z0rU/kiqd1TY+OWCj1UmA+gIyeRZ+ xaE4P3tR2LoVEu+r2BFrx6fMHyvuypXBIwAF6eT0= Received: from localhost (p54ad4a5a.dip0.t-ipconnect.de [84.173.74.90]) by mx.zohomail.com with SMTPS id 16268197695751002.3844058403408; Tue, 20 Jul 2021 15:22:49 -0700 (PDT) User-agent: mu4e 1.4.15; emacs 27.2 From: Ricardo Wurmus To: 49199-done@debbugs.gnu.org Subject: [PATCH core-updates] add package-db to runhaskell (haskell-build-system) 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, 21 Jul 2021 00:22:45 +0200 Message-ID: <87y2a04ocq.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; format=flowed X-ZohoMailClient: External X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 49199-done Cc: John Kehayias 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 (-) Hi, I made a commit out of the diff and pushed it to wip-haskell, which is based on core-updates. -- Ricardo From unknown Wed Jun 18 23:07:36 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, 18 Aug 2021 11:24:11 +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