From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 11 05:36:12 2023 Received: (at submit) by debbugs.gnu.org; 11 Feb 2023 10:36:12 +0000 Received: from localhost ([127.0.0.1]:38984 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pQnEq-0004z6-Ap for submit@debbugs.gnu.org; Sat, 11 Feb 2023 05:36:12 -0500 Received: from lists.gnu.org ([209.51.188.17]:37778) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pQnEm-0004yg-HT for submit@debbugs.gnu.org; Sat, 11 Feb 2023 05:36:08 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pQnEm-0004Oo-Br for guix-patches@gnu.org; Sat, 11 Feb 2023 05:36:08 -0500 Received: from knopi.disroot.org ([178.21.23.139]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pQnEk-0005nS-Hr for guix-patches@gnu.org; Sat, 11 Feb 2023 05:36:07 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 623F6414C8; Sat, 11 Feb 2023 11:36:04 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tovM1aY3o8cn; Sat, 11 Feb 2023 11:36:03 +0100 (CET) From: Maya Tomasek DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1676111763; bh=gJz8Hy2MGZClR7j/+MiH4aUxyCT9jhDzLoDGEpIZje8=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Rp4G0uPp78H6ZOEC8LZsv48HmLt7mHE7FoQzuvuGiTafIv2/8hn3+Li3SvVBpYoLX zS+0VgrF4bnHhIBr9jtZ+YtsMxIu/BFDu9nZ1ecAcVz7XV6QZnP/ojHeZwWDwETo+1 roPt95xX/+S6MjSPb/1XZ2J/gK45vEsZQZWr8//VDDX3yH2SM9DaNbJsi3LkkQ5Ml9 mGaZ/k+6YeiFDawnxblTNXWgl9QraBv2k4XY+FqTIktar/CqfTHeTayO2GDrKehAH+ rFotC9a3UGhc+OXRpLGS6dfgdkpBLmYQkNXwG8Ef4H9bcYbG6z6qxwR2javMaKpjzv EKn23szZ6W/LA== To: guix-patches@gnu.org Subject: [PATCH 3/6] gnu: Add zix. Date: Sat, 11 Feb 2023 11:35:34 +0100 Message-Id: <20230211103537.24139-4-maya.tomasek@disroot.org> In-Reply-To: <20230211103537.24139-1-maya.tomasek@disroot.org> References: <20230211103537.24139-1-maya.tomasek@disroot.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=maya.tomasek@disroot.org; helo=knopi.disroot.org 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, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Antero Mejr 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: -2.4 (--) From: Antero Mejr * gnu/packages/datastructures.scm (zix): New variable. --- gnu/packages/datastructures.scm | 40 +++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/datastructures.scm b/gnu/packages/datastructures.scm index d40051506f..3d179624b8 100644 --- a/gnu/packages/datastructures.scm +++ b/gnu/packages/datastructures.scm @@ -26,6 +26,7 @@ (define-module (gnu packages datastructures) #:use-module (gnu packages autotools) #:use-module (gnu packages boost) #:use-module (gnu packages perl) + #:use-module (gnu packages pkg-config) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix gexp) @@ -390,3 +391,42 @@ (define-public robin-map policy, the last two use a prime growth policy instead and are able to cope better with a poor hash function.") (license license:expat))) + +(define-public zix + (let ((commit "56ec14c4369c591f5efbb500b0829b760bee7800") + (revision "0")) + (package + (name "zix") + (version (git-version "0.0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/drobilla/zix.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "095b2vjmwh9swbwkkkjpcdhsi0c93lxrzd76k7hzdyyf7zb5rgdx")))) + (build-system meson-build-system) + (arguments + (list #:configure-flags #~(list "-Ddocs=disabled"))) ;needs "sphinxygen" + (native-inputs (list pkg-config)) + (home-page "https://gitlab.com/drobilla/zix") + (synopsis "C library of portability wrappers and data structures") + (description + "Zix is a C library of portability wrappers and data structures. It +provides the following components: +@enumerate +@item @code{ZixAllocator}: A customizable allocator. +@item @code{ZixBumpAllocator}: A simple realtime-safe bump-pointer allocator. +@item @code{ZixBTree}: A page-allocated B-tree. +@item @code{ZixHash}: An open-addressing hash table. +@item @code{ZixRing}: A lock-free realtime-safe ring buffer. +@item @code{ZixSem}: A portable semaphore wrapper. +@item @code{ZixThread}: A portable thread wrapper. +@item @code{ZixTree}: A binary search tree. +@item @code{zix/digest.h}: Digest functions suitable for hashing arbitrary data. +@item @code{zix/filesystem.h}: Functions for working with filesystems. +@item @code{zix/path.h}: Functions for working with filesystem paths lexically. +@end enumerate\n") + (license license:isc)))) -- 2.39.1 From debbugs-submit-bounces@debbugs.gnu.org Sat Feb 11 05:51:26 2023 Received: (at 61426-done) by debbugs.gnu.org; 11 Feb 2023 10:51:26 +0000 Received: from localhost ([127.0.0.1]:39044 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pQnTa-0007qq-06 for submit@debbugs.gnu.org; Sat, 11 Feb 2023 05:51:26 -0500 Received: from knopi.disroot.org ([178.21.23.139]:58218) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pQnTY-0007qg-2v for 61426-done@debbugs.gnu.org; Sat, 11 Feb 2023 05:51:24 -0500 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 917E941497 for <61426-done@debbugs.gnu.org>; Sat, 11 Feb 2023 11:51:23 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zVYEAqqLPEkC for <61426-done@debbugs.gnu.org>; Sat, 11 Feb 2023 11:51:22 +0100 (CET) From: =?utf-8?B?TcOhamEgVG9tw6HFoWVr?= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1676112682; bh=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN/XKdLCPjaYaY=; h=From:To:Subject:Date; b=dsTHz/mtmrPtmJr0nypMn+2MCFAOSre708VgPk416osdKw3Fnxc04FatxI26fQ17r Y42+u6aEUPmZbzV6Ffwyd2qPMX6gv3MHq3ZfRLIJXJzUo8+Det26oxLEQFDbwfp2iR L3GutgeQ0u4UkNwvGdb4QlO3qbOa5l3RGyrsKS62vsmGE2Vz1/Z980TWFiXhRS8Etc ys6VsUbROtVOIDgewiNqZWDo9lib8oASrW3t2YPS3r3CiePkvcPtklvYd421+wfF0x uzYr8BdE2TTlKnq8SWeFlWbsxLFbQr6SmpnZhlPbFYMvpN2r5X7vp49ch2M/N0CVUX ygeCpc+IPXTMw== To: 61426-done@debbugs.gnu.org Subject: Closing this as this was a mistake Date: Sat, 11 Feb 2023 11:51:21 +0100 Message-ID: <87wn4o4gra.fsf@disroot.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 61426-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 (-) From unknown Thu Sep 11 18:07:21 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 11 Mar 2023 12:24:06 +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