From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 08:07:13 2022 Received: (at submit) by debbugs.gnu.org; 3 Aug 2022 12:07:13 +0000 Received: from localhost ([127.0.0.1]:46467 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJD9c-00037p-Di for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:07:13 -0400 Received: from lists.gnu.org ([209.51.188.17]:49340) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJD9Q-00032U-4m for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:07:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:58438) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oJD9P-00082y-VD for guix-patches@gnu.org; Wed, 03 Aug 2022 08:06:59 -0400 Received: from knopi.disroot.org ([178.21.23.139]:49802) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oJD9M-00036m-Oe for guix-patches@gnu.org; Wed, 03 Aug 2022 08:06:59 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id B4F2A40E4C; Wed, 3 Aug 2022 14:06:45 +0200 (CEST) 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 UTF8SMTP id t_3NgPWXV3Cg; Wed, 3 Aug 2022 14:06:44 +0200 (CEST) From: "(" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659528293; bh=Z0A2faTy2diPb0DYn0TbYf8EaykPSh/qW9mM+mrECO8=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=j7q4+ViKKmgts9Um7SMht6a76NVtXyjwcWw2xLLmOd2V4QtJMy+BuPI3th842PicJ JkmUpsqEVM17IMQmU0GK8UgueknoLzRWpQgTYHbarzQ53YT3L+WLCt8eFgTlkbd2fk 1mclXt1IfcP2eo1hRbG5Bd4C43uQz50wxUAtuciZHyLxPJUMNsFlSlVolhjD3NaT+M bNEV5DWsDSSLV/2sE7gs1pf915ZBISOMx5zRarazUcX2EWyLUnW6eg9YPQ5DTGy3cz JYlnG79EVxjYGGPJhGaAh2GASLja4EuLvlRNLsMIGokDJlxbOchY88c0D0U1BWKMxW F4PXXObZAq6vg== To: guix-patches@gnu.org Subject: [PATCH 36/41] gnu: Add go-gopkg-in-tomb-v1. Date: Wed, 3 Aug 2022 13:04:34 +0100 Message-Id: <20220803120439.5108-36-paren@disroot.org> In-Reply-To: <20220803120439.5108-1-paren@disroot.org> References: <20220803120439.5108-1-paren@disroot.org> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=178.21.23.139; envelope-from=paren@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, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: "\(" 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 (--) * gnu/packages/golang.scm (go-gopkg-in-tomb-v1): New variable. --- gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 6ee01b9ea1..da7b983475 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -10851,3 +10851,29 @@ (define-public go-github-com-onsi-gomega (description "Gomega is the preferred matcher library for the Ginkgo test framework.") (license license:expat))) + +(define-public go-gopkg-in-tomb-v1 + (package + (inherit go-gopkg.in-tomb.v2) + (name "go-gopkg-in-tomb-v1") + (version "1.0.0-20141024135613-dd632973f1e7") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://gopkg.in/tomb.v1") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv")))) + (arguments + (list #:import-path "gopkg.in/tomb.v1" + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-test + (lambda* (#:key import-path #:allow-other-keys) + (substitute* (string-append "src/" import-path + "/tomb_test.go") + (("t.Fatalf\\(`Killf\\(\"BO%s") + "t.Fatalf(`Killf(\"BO%%s"))))))) + (home-page "https://gopkg.in/tomb.v1"))) -- 2.37.1 From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 08:17:52 2022 Received: (at control) by debbugs.gnu.org; 3 Aug 2022 12:17:52 +0000 Received: from localhost ([127.0.0.1]:46549 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDJw-0003VQ-BA for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:17:52 -0400 Received: from knopi.disroot.org ([178.21.23.139]:45588) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDJt-0003VF-69 for control@debbugs.gnu.org; Wed, 03 Aug 2022 08:17:50 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 9CA2040D96 for ; Wed, 3 Aug 2022 14:17:48 +0200 (CEST) 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 3rXwhm5q2hK1 for ; Wed, 3 Aug 2022 14:17:47 +0200 (CEST) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659529067; bh=WMWGEbG5sg0dFQzbWHnMFMTLFP+a3LO8S3y8TT+KO0Q=; h=Date:Subject:From:To; b=X5zvbNM7x0wl7OqwPD+Ffu2opwG2nordWZBykon9ky7ykI+jMxJmRUafqCO+P9ijO QRKX2wN/8kjtBTwLZT7fSU9HpUOXK2pq8G6DsHuFZW59Kqf3ag1qhZ5FJSq9LQzwkS YYi3Bnl9nqOzcm/IVC62yRq344GfF1FtMGProvu+1nJ65+WQq4K1Q8evktfGp2SKjp Rooe6UsP4RKWEdfKUCXNKWwwVJFe1z3jIL75S64S34vuCJZsa7QKM4OiKumfZ8whsg Xsz9tAWFchfyJ6nBtQHV29vfZyFT1ZIjPJw+isn1xXuItlGYWhhCTVx5j4GIXS0EAS 28a48lbbojgTA== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 03 Aug 2022 13:17:46 +0100 Message-Id: Subject: From: "(" To: X-Spam-Score: 2.0 (++) 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: merge 55903 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 56919 56920 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 56931 56933 56936 56935 56932 56941 56938 56939 56 [...] Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control 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 (+) merge 55903 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 569= 19 56920 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 = 56931 56933 56936 56935 56932 56941 56938 56939 56937 56942 56940 56943 569= 44 56945 56946 56947 56948 56949 thanks -- ( From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 08:32:01 2022 Received: (at control) by debbugs.gnu.org; 3 Aug 2022 12:32:01 +0000 Received: from localhost ([127.0.0.1]:46741 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDXd-0006Gg-1b for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:32:01 -0400 Received: from knopi.disroot.org ([178.21.23.139]:56268) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDXa-0006GY-RY for control@debbugs.gnu.org; Wed, 03 Aug 2022 08:31:59 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 5C14040DED for ; Wed, 3 Aug 2022 14:31:58 +0200 (CEST) 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 UTF8SMTP id E_E3ZYQrJPp3 for ; Wed, 3 Aug 2022 14:31:57 +0200 (CEST) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659529904; bh=VPXzsnu7xHX/DJXk0Ame3rH2Frx2BImX8NbBTYPwhqk=; h=Date:Subject:From:To; b=fpUzS8b+PV3yGLEJUGlegB3Z8nLN9w93Ky2L03kPDE3ZQJE+OKcujMmqKTlpGzrF6 1rglT5nYRGhugteiKrxz01TOoZZ64WKnavu49NdkMMIY+OwuDEw5+DHvI9paDNQ9UX amgPytIJXyCx42y0IDMdhrpVWlKljqDlCwYLvd+szO67u3SWoMt2XL8Hgf9v8BUZX0 wngHN772uX1rhiIJoXHBPtdOHm7Jj7ocaeod5UhIC5549hmm6t4za2xB4nctX4J1xt fOqdBEPmMaBaShe0E7BXDD9H+u2+8ipK4HYAaS/p2FLqZIacIFtCX26b+PhDkKjcn1 8qqtPN5KamN4A== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 03 Aug 2022 13:31:44 +0100 Message-Id: Subject: From: "(" To: X-Spam-Score: 2.0 (++) 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: close 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 56919 56920 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 56931 56933 56936 56935 56932 56941 56938 56939 56937 56 [...] Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control 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 (+) close 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 56919 569= 20 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 56931 = 56933 56936 56935 56932 56941 56938 56939 56937 56942 56940 56943 56944 569= 45 56946 56947 56948 56949 thanks -- ( From unknown Wed Jun 18 23:15:45 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug No longer marked as fixed in versions 56938, 56918, 56932, 56937, 56933, 56922, 56912, 56946, 56939, 56923, 56931, 56940, 56917, 56936, 56949, 56948, 56947, 56942, 56914, 56911, 56919, 56927, 56926, 56920, 56913, 56941, 56910, 56935, 56925, 56916, 56943, 56930, 56928, 56934, 56924, 56921, 56915, 56929, 56945, and 56944 and reopened. Date: Wed, 03 Aug 2022 12:35:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug No longer marked as fixed in versions 56938, 56918, 56932, 56937, 56933, 56922, 56912, 56946, 56939, 56923, 56931, 56940, 56917, 56936, 56949, 56948, 56947, 56942, 56914, 56911, 56919, 56927, 56926, 56920, 56913, 56941, 56910, 56935, 56925, 56916, 56943, 56930, 56928, 56934, 56924, 56921, 56915, 56929, 56945, and 56944 and reopened. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 08:37:21 2022 Received: (at control) by debbugs.gnu.org; 3 Aug 2022 12:37:21 +0000 Received: from localhost ([127.0.0.1]:46794 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDcn-0006SZ-2U for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:37:21 -0400 Received: from knopi.disroot.org ([178.21.23.139]:37120) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDck-0006SQ-M5 for control@debbugs.gnu.org; Wed, 03 Aug 2022 08:37:20 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 0C69F40DB6 for ; Wed, 3 Aug 2022 14:37:18 +0200 (CEST) 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 f4Cxr0JOu_e9 for ; Wed, 3 Aug 2022 14:37:17 +0200 (CEST) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659530234; bh=eGbYskMuk5Buchxn8aaQHX4ISR9ZG45KEnnr65aS4CM=; h=Date:From:To:Subject; b=SCw5NuStwpacvbdTTcbwXBttikRqW0YIGFWAFioOgzVBm8uXEDi6dcZ24+nO2RDui HIbnWWr5ZEmVkuU43oercKcqRKtz2hcslLpkylW0PzFsufVcoN01eYftrrPO3irQ/+ PVExpi+KrN82jIhumKgprg3RaoE5VC5K03IQEcdVDaxz2BSyEj2gWVoTl/6tYNaSUX w/xTrTZm08/+MON+/N3Ph4IMo8k+Ya2/bogA8bXHahggHJ1z+IAjpBzD/DltMkY7Vu 5lOKI2yVzKJ0iP//9/8a2YElW4HeV/PkroWbhHnR2xn3fEk6nAlJ3OmKKhVBcc3xG+ 4p8YdJN5bBhIg== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 03 Aug 2022 13:37:14 +0100 Message-Id: From: "(" To: Subject: X-Spam-Score: 2.0 (++) 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: unmerge 55903 thanks -- ( Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control 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 (+) unmerge 55903 thanks -- ( From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 03 08:37:48 2022 Received: (at control) by debbugs.gnu.org; 3 Aug 2022 12:37:48 +0000 Received: from localhost ([127.0.0.1]:46797 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDdE-0006Th-Aw for submit@debbugs.gnu.org; Wed, 03 Aug 2022 08:37:48 -0400 Received: from knopi.disroot.org ([178.21.23.139]:43224) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oJDdD-0006Ta-3S for control@debbugs.gnu.org; Wed, 03 Aug 2022 08:37:47 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 74FF840DC4 for ; Wed, 3 Aug 2022 14:37:46 +0200 (CEST) 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 UTF8SMTP id GU-_CAFJYqT3 for ; Wed, 3 Aug 2022 14:37:45 +0200 (CEST) Mime-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1659530265; bh=VPXzsnu7xHX/DJXk0Ame3rH2Frx2BImX8NbBTYPwhqk=; h=Date:Subject:From:To; b=jjzdDCFDu9kKY18wP4Fcrc5wQ+Z4miRsa9GbdRpj0vhJQh1VWysnknfCrvsRsuF8z vd3fvSUz3ift2vAwLpQtW3qKRmBp2WMJM/bXCLNtAQuELx4XicukTfFoDdViMxYKlQ 9FagXn69G4lbD4rrThWJuFW/Gizb1vn2HYw18d6ACr4arHZMaFx7bfA1fvx1QNGzzo x0z+mpHFecxdsCWUTvIB4ZVmaS47VMXZswub50udo6kHGccPBAD55QQlxuNx8B+XaM NhI/Or0e4YIcmVEY6+p6m1tY14XFAICsKKT7HPh0oM/uU8bWJ+ULZZr07yVPNDFwjC T1A3zTEV/J6xg== Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=UTF-8 Date: Wed, 03 Aug 2022 13:37:44 +0100 Message-Id: Subject: From: "(" To: X-Spam-Score: 2.0 (++) 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: close 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 56919 56920 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 56931 56933 56936 56935 56932 56941 56938 56939 56937 56 [...] Content analysis details: (2.0 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record -0.0 SPF_PASS SPF: sender matches SPF record 2.0 BLANK_SUBJECT Subject is present but empty X-Debbugs-Envelope-To: control 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 (+) close 56909 56914 56910 56911 56912 56913 56915 56916 56917 56918 56919 569= 20 56921 56922 56923 56924 56925 56926 56927 56928 56934 56930 56929 56931 = 56933 56936 56935 56932 56941 56938 56939 56937 56942 56940 56943 56944 569= 45 56946 56947 56948 56949 thanks -- ( From unknown Wed Jun 18 23:15:45 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 01 Sep 2022 11:24:07 +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