From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 01 14:23:52 2021 Received: (at submit) by debbugs.gnu.org; 1 Jan 2021 19:23:52 +0000 Received: from localhost ([127.0.0.1]:34890 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kvQ1f-0004uQ-N4 for submit@debbugs.gnu.org; Fri, 01 Jan 2021 14:23:51 -0500 Received: from lists.gnu.org ([209.51.188.17]:41284) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kvQ1e-0004uJ-Gw for submit@debbugs.gnu.org; Fri, 01 Jan 2021 14:23:51 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:39054) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kvQ1c-00022g-Qk for guix-patches@gnu.org; Fri, 01 Jan 2021 14:23:49 -0500 Received: from mail2.protonmail.ch ([185.70.40.22]:58726) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kvQ1X-0005Gx-NF for guix-patches@gnu.org; Fri, 01 Jan 2021 14:23:46 -0500 Date: Fri, 01 Jan 2021 19:23:23 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1609529012; bh=1WlvXHkt7KtaZsjnhGBczbndREypIh6Vf1d4IHYWGBk=; h=Date:To:From:Reply-To:Subject:From; b=IGYXRz6LVKwSiYHJ9ZEsO50IkXodY9RQCqeErLem/mXDTkU8oqnR0Rlntgmi/JFiq F7zWaNcrRL4A1OEsZl/p5WGO/G2wFKL8STW38/edz14dJbw1drQLw6QmCZp3XgKVW7 JNYUqI7gwYzoGGkXzeID3EAguk/87s3Cn7v47DUI= To: guix-patches@gnu.org From: Ryan Prior Subject: [PATCH 0/6] vlang 0.2 update Message-ID: <20210101192319.23494-1-rprior@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 Received-SPF: pass client-ip=185.70.40.22; envelope-from=rprior@protonmail.com; helo=mail2.protonmail.ch 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, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-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: Ryan Prior Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Hi Guix! The vlang compiler had its 0.2 release recently and I've been work= ing on improving the quality of our package as well. This patch series has = 4 exciting improvements: 1. The compiler is updated to 0.2, which already includes a number of chang= es to the build system to make things work better for Guix users. 2. Three vendored dependencies are factored out into their own Guix package= s: tiny-bignu, cJSON, and wyhash. 3. A number of tests that were failing have been patched to succeed. The nu= mber of tests we skip is down to three. 4. The v tools now work out of the box, with some exceptions such as the RE= PL that rely on `cc`. I am continuing the work to move the last of the vendored dependencies into= their own packages, get all the tests passing, and get us to a working v r= epl. But this series already gets us a lot closer to where I want to be. This patch series also relates to issues 43821 and 44978. Cheers, Ryan Ryan Prior (6): gnu: Add wyhash. gnu: vlang: Update to 0.2. gnu: vlang: Use system tiny-bignum. gnu: vlang: Use system cJSON. gnu: vlang: Use system wyhash. gnu: vlang: Fix v tools. gnu/local.mk | 1 + gnu/packages/datastructures.scm | 34 ++++- .../vlang-accommodate-timestamps.patch | 50 ++++++++ gnu/packages/vlang.scm | 119 ++++++++++++++---- 4 files changed, 178 insertions(+), 26 deletions(-) create mode 100644 gnu/packages/patches/vlang-accommodate-timestamps.patch --=20 2.29.2