From debbugs-submit-bounces@debbugs.gnu.org Wed Mar 16 12:19:53 2022 Received: (at submit) by debbugs.gnu.org; 16 Mar 2022 16:19:53 +0000 Received: from localhost ([127.0.0.1]:52142 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nUWNN-0003b9-1z for submit@debbugs.gnu.org; Wed, 16 Mar 2022 12:19:53 -0400 Received: from lists.gnu.org ([209.51.188.17]:40802) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nUWNK-0003b0-Sn for submit@debbugs.gnu.org; Wed, 16 Mar 2022 12:19:52 -0400 Received: from eggs.gnu.org ([209.51.188.92]:59470) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nUWNK-0006ms-O7 for guix-patches@gnu.org; Wed, 16 Mar 2022 12:19:50 -0400 Received: from smtp.polymtl.ca ([132.207.4.11]:37495) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nUWNH-0001VX-My for guix-patches@gnu.org; Wed, 16 Mar 2022 12:19:49 -0400 Received: from laura.hitronhub.home (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 22GGJWRh028314 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NOT); Wed, 16 Mar 2022 12:19:39 -0400 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 22GGJWRh028314 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=polymtl.ca; s=default; t=1647447580; bh=cOEvhx1RYie+QhJTteirCZ8QnK+Kkle6dn4R3kga+fw=; h=From:To:Cc:Subject:Date:From; b=azlpxnOjns/QHDIxoQNSOcKQiV5wX1QH6Y2w9XUWMdBpr8nuq8Exv+lJXDe0e98RV ZyLH/cGklOAFonPKDGRqfmLOryiHhVQShQIUa4y53AYKYCoU5J8Ea0FR9vq+PYKwN/ Fbt6cxq5YIox/c457k6K8HrlfJEu+SXp16O2igJI= From: Olivier Dion To: guix-patches@gnu.org Subject: [PATCH] gnu: capstone: Update to latest stable release 4.0.2. Date: Wed, 16 Mar 2022 12:19:31 -0400 Message-Id: X-Mailer: git-send-email 2.34.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Poly-FromMTA: (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) at Wed, 16 Mar 2022 16:19:32 +0000 Received-SPF: pass client-ip=132.207.4.11; envelope-from=olivier.dion@polymtl.ca; helo=smtp.polymtl.ca X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 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, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-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.3 (-) X-Debbugs-Envelope-To: submit Cc: Olivier Dion 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.3 (--) * gnu/packages/engineering.scm (capstone): Bump to 4.0.2. --- gnu/packages/engineering.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index fd66f9ee19..eed6d69af9 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -28,6 +28,7 @@ ;;; Copyright © 2021, 2022 Petr Hodina ;;; Copyright © 2021 Foo Chuan Wei ;;; Copyright © 2022 Evgeny Pisemsky +;;; Copyright © 2022 Olivier Dion ;;; ;;; This file is part of GNU Guix. ;;; @@ -1550,7 +1551,7 @@ (define-public adms (define-public capstone (package (name "capstone") - (version "3.0.5") + (version "4.0.2") (source (origin (method git-fetch) (uri (git-reference @@ -1559,7 +1560,7 @@ (define-public capstone (file-name (git-file-name name version)) (sha256 (base32 - "0dgf82kxj4rs45d6s8sr984c38sll1n5scpypjlyh21gh2yl4qfw")))) + "0y5g74yjyliciawpn16zhdwya7bd3d7b1cccpcccc2wg8vni1k2w")))) (build-system gnu-build-system) (arguments `(#:tests? #f -- 2.34.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 18 01:50:26 2022 Received: (at 54426-done) by debbugs.gnu.org; 18 Mar 2022 05:50:26 +0000 Received: from localhost ([127.0.0.1]:56050 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nV5VJ-0002ns-Rh for submit@debbugs.gnu.org; Fri, 18 Mar 2022 01:50:26 -0400 Received: from mail-qt1-f172.google.com ([209.85.160.172]:35486) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nV5VI-0002ne-9w for 54426-done@debbugs.gnu.org; Fri, 18 Mar 2022 01:50:24 -0400 Received: by mail-qt1-f172.google.com with SMTP id v14so6192940qta.2 for <54426-done@debbugs.gnu.org>; Thu, 17 Mar 2022 22:50:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-transfer-encoding; bh=sLIIfsz21ICGUPPYLxctkDONOoTuTy7dGOYmKpDYviw=; b=bdYtoi0iiESeU74YJZcoHf6cYOCVTLGQslld2+Ujc5AD7ZK07SPGCX+7eq414O5RKl wIgXyxxUyqj0TYI24ltE0C/dfqK1EoacNdoppvNC/YmsDMQ++3aL5vhDJ5Ge3nROIRut ZNNyJ7euRsHvUr83l9DHn3MGHkSSBkhoK1iwIceD5nF8F75GIuJdn5Iv3xLAXnxkAwcK TEVCElvExydvxjBmtQH+snxyiFpa1IXFNmMbohGwc6PKAe3kEp6T5tuwdEsK0w+QoTb9 uxn5LNhqUlWPDvFqllwdRJn8c7nhe2KuJVvy+T/0kpNo5mtjOzJFcSxm2ZKN6+tbwOwz OIMQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=sLIIfsz21ICGUPPYLxctkDONOoTuTy7dGOYmKpDYviw=; b=COi8J1ob9kpY8osuq3bgJ4ON8iwyiIBT5DKVJ+TaHSGI1rcOWBj9Jaeg8SIqPUT7H6 gRlKB83WiPA9y2e57C3/EWB3ToU037Erox1iDpYFHq9NxiHWWGx1kKMO9inbvcX/2Y3l p4HwdXVPz1kKvpmBUucvAB11MMC6F+pP6eQvJq2g9Ad5dUgPFjEmRxYYmpVEd94263m5 fNSQuE/C6GnbBai1R4CyC0QPvQ9V7ybq48ter7oXTAkKH9VjOQGIulthNS9C4sM2B4Ec LT2j6mJJvr1+2X7V9bz8Bsf4IPrmn647NgZFgiRNgxWSrpRrhdeYZXAzGIhCm+pepdWE lMNg== X-Gm-Message-State: AOAM531T9TvBAP3/KQfe24db7IFnzrR6B58yyRPGa1f7wMFvImate86/ z5Cj8SMoY3hiGDnOEHB/A2VsFwieXxIOpQ== X-Google-Smtp-Source: ABdhPJyHQG6hKHwo9vfo2t7v5hOcpAevJYF2qu8iBG5GOZSdvKY4QvHLZ5Vgnjpg1V1IwojmMO72Vg== X-Received: by 2002:ac8:7e87:0:b0:2e0:5e20:5fe9 with SMTP id w7-20020ac87e87000000b002e05e205fe9mr6615524qtj.382.1647582618559; Thu, 17 Mar 2022 22:50:18 -0700 (PDT) Received: from hurd (dsl-10-131-58.b2b2c.ca. [72.10.131.58]) by smtp.gmail.com with ESMTPSA id f18-20020a05622a105200b002e1eb06ece3sm4747210qte.31.2022.03.17.22.50.17 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 17 Mar 2022 22:50:18 -0700 (PDT) From: Maxim Cournoyer To: Olivier Dion Subject: Re: bug#54426: [PATCH] gnu: capstone: Update to latest stable release 4.0.2. References: Date: Fri, 18 Mar 2022 01:50:17 -0400 In-Reply-To: (Olivier Dion's message of "Wed, 16 Mar 2022 12:19:31 -0400") Message-ID: <87wngr4xnq.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 54426-done Cc: 54426-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 (-) Hello! Olivier Dion writes: > * gnu/packages/engineering.scm (capstone): Bump to 4.0.2. Tip: you can add the yasnippet snippets found under etc/snippets from your checkout, then at the commit message buffer you type 'update...' TAB and voila :-). This ensures a very rigid commit message format, useful to grep it logs, for example. > gnu/packages/engineering.scm | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm > index fd66f9ee19..eed6d69af9 100644 > --- a/gnu/packages/engineering.scm > +++ b/gnu/packages/engineering.scm > @@ -28,6 +28,7 @@ > ;;; Copyright =C2=A9 2021, 2022 Petr Hodina > ;;; Copyright =C2=A9 2021 Foo Chuan Wei > ;;; Copyright =C2=A9 2022 Evgeny Pisemsky > +;;; Copyright =C2=A9 2022 Olivier Dion > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -1550,7 +1551,7 @@ (define-public adms > (define-public capstone > (package > (name "capstone") > - (version "3.0.5") > + (version "4.0.2") > (source (origin > (method git-fetch) > (uri (git-reference > @@ -1559,7 +1560,7 @@ (define-public capstone > (file-name (git-file-name name version)) > (sha256 > (base32 > - "0dgf82kxj4rs45d6s8sr984c38sll1n5scpypjlyh21gh2yl4qfw"))= )) > + "0y5g74yjyliciawpn16zhdwya7bd3d7b1cccpcccc2wg8vni1k2w"))= )) > (build-system gnu-build-system) > (arguments > `(#:tests? #f I've adjusted the home page and repo URL since 'guix lint' mentioned it had been permanently redirected, removed the trailing #t at the end of a phase (these are no longer needed) and pushed as ba15abc0083eb614d3396e603916790b0c7f236f. Thank you! Closing. Maxim From debbugs-submit-bounces@debbugs.gnu.org Fri Mar 18 10:37:46 2022 Received: (at 54426-done) by debbugs.gnu.org; 18 Mar 2022 14:37:46 +0000 Received: from localhost ([127.0.0.1]:58051 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nVDje-00076K-He for submit@debbugs.gnu.org; Fri, 18 Mar 2022 10:37:46 -0400 Received: from smtp.polymtl.ca ([132.207.4.11]:49698) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1nVDjd-000767-Jx for 54426-done@debbugs.gnu.org; Fri, 18 Mar 2022 10:37:46 -0400 Received: from localhost (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 22IEbY38020601 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Fri, 18 Mar 2022 10:37:39 -0400 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 22IEbY38020601 From: Olivier Dion To: Maxim Cournoyer Subject: Re: bug#54426: [PATCH] gnu: capstone: Update to latest stable release 4.0.2. In-Reply-To: <87wngr4xnq.fsf@gmail.com> References: <87wngr4xnq.fsf@gmail.com> Date: Fri, 18 Mar 2022 10:37:34 -0400 Message-ID: <878rt7xr69.fsf@laura> MIME-Version: 1.0 Content-Type: text/plain X-Poly-FromMTA: (modemcable094.169-200-24.mc.videotron.ca [24.200.169.94]) at Fri, 18 Mar 2022 14:37:34 +0000 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 54426-done Cc: 54426-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: -3.3 (---) On Fri, 18 Mar 2022, Maxim Cournoyer wrote: >> * gnu/packages/engineering.scm (capstone): Bump to 4.0.2. > > Tip: you can add the yasnippet snippets found under > etc/snippets from your checkout, then at the commit message buffer you > type 'update...' TAB and voila :-). This ensures a very rigid commit > message format, useful to grep it logs, for example. Thanks for the tip Maxim! -- Olivier Dion Polymtl From unknown Fri Jun 20 19:57:24 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, 16 Apr 2022 11: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