From unknown Sun Jun 22 17:14:03 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#64629] [PATCH] gnu: python-pyusb: Update to 1.2.1. Resent-From: Simon South Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 14 Jul 2023 19:47:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 64629 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 64629@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.168936400412750 (code B ref -1); Fri, 14 Jul 2023 19:47:02 +0000 Received: (at submit) by debbugs.gnu.org; 14 Jul 2023 19:46:44 +0000 Received: from localhost ([127.0.0.1]:43556 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qKOkV-0003Ja-TT for submit@debbugs.gnu.org; Fri, 14 Jul 2023 15:46:44 -0400 Received: from lists.gnu.org ([2001:470:142::17]:50512) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qKOkT-0003JN-Si for submit@debbugs.gnu.org; Fri, 14 Jul 2023 15:46:42 -0400 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 1qKOkM-00013z-Jg for guix-patches@gnu.org; Fri, 14 Jul 2023 15:46:34 -0400 Received: from mailout.easymail.ca ([64.68.200.34]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qKOkK-0008Nu-OY for guix-patches@gnu.org; Fri, 14 Jul 2023 15:46:34 -0400 Received: from localhost (localhost [127.0.0.1]) by mailout.easymail.ca (Postfix) with ESMTP id 2241962146 for ; Fri, 14 Jul 2023 19:46:30 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at emo07-pco.easydns.vpn Received: from mailout.easymail.ca ([127.0.0.1]) by localhost (emo07-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FBBiIi35rTM6 for ; Fri, 14 Jul 2023 19:46:29 +0000 (UTC) Received: from localhost.localdomain (23-233-96-210.cpe.pppoe.ca [23.233.96.210]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mailout.easymail.ca (Postfix) with ESMTPSA id A88AF620F1 for ; Fri, 14 Jul 2023 19:46:29 +0000 (UTC) From: Simon South Date: Fri, 14 Jul 2023 15:45:35 -0400 Message-Id: <89ccedb34b5d1cd4a286e465280f7d69423f5ec1.1689363756.git.simon@simonsouth.net> X-Mailer: git-send-email 2.40.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=64.68.200.34; envelope-from=simon@simonsouth.net; helo=mailout.easymail.ca X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, 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.0 (+) 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.0 (/) * gnu/packages/libusb.scm (python-pyusb): Update to 1.2.1. [native-inputs]: Add python-setuptools-scm. --- Tested on AArch64 and x86-64 and all appears well. All dependencies build without issue since commit 917a299831. gnu/packages/libusb.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm index d0837c8a91..13090d30ab 100644 --- a/gnu/packages/libusb.scm +++ b/gnu/packages/libusb.scm @@ -274,14 +274,14 @@ (define-public python-libusb1 (define-public python-pyusb (package (name "python-pyusb") - (version "1.0.2") + (version "1.2.1") (source (origin (method url-fetch) (uri (pypi-uri "pyusb" version)) (sha256 (base32 - "0qkk2jn270jwwl1x26hmdhb14m9kkbrzzwzizdjcl1a29b6756sf")))) + "1fg7knfzybzija2b01pzrzhzsj989scl12sb2ra4f503l8279k54")))) (build-system python-build-system) (arguments `(#:tests? #f ; no tests @@ -302,6 +302,9 @@ (define-public python-pyusb "^libusb-.*\\.so\\..*")) "\""))) #t))))) + + (native-inputs + (list python-setuptools-scm)) (inputs (list libusb)) (home-page "https://pyusb.github.io/pyusb/") base-commit: 917a299831361f253ea664f009176b4bbe06900a -- 2.40.1 From unknown Sun Jun 22 17:14:03 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Simon South Subject: bug#64629: closed (Re: bug#64629: [PATCH] gnu: python-pyusb: Update to 1.2.1.) Message-ID: References: <87h6pyomj2.fsf@envs.net> <89ccedb34b5d1cd4a286e465280f7d69423f5ec1.1689363756.git.simon@simonsouth.net> X-Gnu-PR-Message: they-closed 64629 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 64629@debbugs.gnu.org Date: Thu, 20 Jul 2023 11:23:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1689852182-12178-1" This is a multi-part message in MIME format... ------------=_1689852182-12178-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #64629: [PATCH] gnu: python-pyusb: Update to 1.2.1. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 64629@debbugs.gnu.org. --=20 64629: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D64629 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1689852182-12178-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 64629-done) by debbugs.gnu.org; 20 Jul 2023 11:22:51 +0000 Received: from localhost ([127.0.0.1]:57814 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qMRkA-00039w-3q for submit@debbugs.gnu.org; Thu, 20 Jul 2023 07:22:51 -0400 Received: from mail.envs.net ([5.199.136.28]:51884) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qMRk3-00039e-Rh for 64629-done@debbugs.gnu.org; Thu, 20 Jul 2023 07:22:48 -0400 Received: from localhost (mail.envs.net [127.0.0.1]) by mail.envs.net (Postfix) with ESMTP id B356E38A18D4; Thu, 20 Jul 2023 11:22:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=envs.net; s=modoboa; t=1689852161; bh=HHK8YD1WieD7awe4lT2uGrYtn0CpnhmbtVk9rXLxZis=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=byzHqq3AGZ09y9SzpTtcKFJ0zmHv8dNKtc2sNmA7j0BdsTHm+pBgn9YGF2PhyA72W BDMCYPYiJHi8WVca1gtxWjBhAqgey7xT3unxrquqAwJ0jdA1REMneY/40JaFqxDXSY McvtC1S7ZooXr8h1XW7ezRe9urR3A6syai3Ri89imyWQCtjnIiKBGb1DghZeBp5wQ4 j2orOD7rvGN2jfhi01JrDYTtaUY7dfQbUIF6mGwG8p847deM4JwDhgQOC7wH6xKbw7 HGoOcdQl768jlLKJE4PYE/fBAJCiS6y3M+LmhWhdAMx16xjkTGwUFMNdmPaFgBcgl0 KKyLFqH+VQWqUJbDyNWqH/HYxePW8Mr5l6v/OY5h2LkXaJ2L0v0hV4vabZMaTy0Y1p L5YLBN2Ne+FT8iiOeBeYomuWJOzQjAsPVkJjPJcVzNrJkJXcAA+zYiZHDFkGvnHAbk eguryKIC19i1diT8+orqZbGAMybbZdHaajtjevgsJozwYNc+NQBcml1JA67dVfAUmT AWezcbCMMUYfgwwAAYImmg8b5HinNMzHHX721b65yBMVVLlbmvpuflcw3/817RUUZi bd1rsf42Mykp+/6w/UzaPd259iTRn12M97EMQaXtItQNGeZRmG3t73DjAzVoozJXpu qU1N0dzSFmsBSU8//vjblB0s= X-Virus-Scanned: Debian amavisd-new at mail.envs.net Received: from mail.envs.net ([127.0.0.1]) by localhost (mail.envs.net [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id MhizklYVJM4h; Thu, 20 Jul 2023 11:22:38 +0000 (UTC) Received: from localhost (unknown [117.174.235.109]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.envs.net (Postfix) with ESMTPSA; Thu, 20 Jul 2023 11:22:37 +0000 (UTC) Received: from localhost (localhost [local]) by localhost (OpenSMTPD) with ESMTPA id fdaac95e; Thu, 20 Jul 2023 11:22:25 +0000 (UTC) From: =?utf-8?B?5a6L5paH5q2m?= To: Simon South Subject: Re: bug#64629: [PATCH] gnu: python-pyusb: Update to 1.2.1. References: <89ccedb34b5d1cd4a286e465280f7d69423f5ec1.1689363756.git.simon@simonsouth.net> Date: Thu, 20 Jul 2023 19:22:25 +0800 In-Reply-To: <89ccedb34b5d1cd4a286e465280f7d69423f5ec1.1689363756.git.simon@simonsouth.net> (Simon South's message of "Fri, 14 Jul 2023 15:45:35 -0400") Message-ID: <87h6pyomj2.fsf@envs.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 64629-done Cc: 64629-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 (-) Simon South writes: > * gnu/packages/libusb.scm (python-pyusb): Update to 1.2.1. > [native-inputs]: Add python-setuptools-scm. > --- > Tested on AArch64 and x86-64 and all appears well. All dependencies build > without issue since commit 917a299831. QA status is unknown (seems unreleated to me), but I got dependent packages (stcgal python-capablerobot-usbhub rfcat yubikey-oath-dmenu) built too. So I applied it now, thank you! ------------=_1689852182-12178-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 14 Jul 2023 19:46:44 +0000 Received: from localhost ([127.0.0.1]:43556 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qKOkV-0003Ja-TT for submit@debbugs.gnu.org; Fri, 14 Jul 2023 15:46:44 -0400 Received: from lists.gnu.org ([2001:470:142::17]:50512) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qKOkT-0003JN-Si for submit@debbugs.gnu.org; Fri, 14 Jul 2023 15:46:42 -0400 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 1qKOkM-00013z-Jg for guix-patches@gnu.org; Fri, 14 Jul 2023 15:46:34 -0400 Received: from mailout.easymail.ca ([64.68.200.34]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qKOkK-0008Nu-OY for guix-patches@gnu.org; Fri, 14 Jul 2023 15:46:34 -0400 Received: from localhost (localhost [127.0.0.1]) by mailout.easymail.ca (Postfix) with ESMTP id 2241962146 for ; Fri, 14 Jul 2023 19:46:30 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at emo07-pco.easydns.vpn Received: from mailout.easymail.ca ([127.0.0.1]) by localhost (emo07-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FBBiIi35rTM6 for ; Fri, 14 Jul 2023 19:46:29 +0000 (UTC) Received: from localhost.localdomain (23-233-96-210.cpe.pppoe.ca [23.233.96.210]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mailout.easymail.ca (Postfix) with ESMTPSA id A88AF620F1 for ; Fri, 14 Jul 2023 19:46:29 +0000 (UTC) From: Simon South To: guix-patches@gnu.org Subject: [PATCH] gnu: python-pyusb: Update to 1.2.1. Date: Fri, 14 Jul 2023 15:45:35 -0400 Message-Id: <89ccedb34b5d1cd4a286e465280f7d69423f5ec1.1689363756.git.simon@simonsouth.net> X-Mailer: git-send-email 2.40.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=64.68.200.34; envelope-from=simon@simonsouth.net; helo=mailout.easymail.ca X-Spam_score_int: -41 X-Spam_score: -4.2 X-Spam_bar: ---- X-Spam_report: (-4.2 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3, 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.0 (+) 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: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) * gnu/packages/libusb.scm (python-pyusb): Update to 1.2.1. [native-inputs]: Add python-setuptools-scm. --- Tested on AArch64 and x86-64 and all appears well. All dependencies build without issue since commit 917a299831. gnu/packages/libusb.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/libusb.scm b/gnu/packages/libusb.scm index d0837c8a91..13090d30ab 100644 --- a/gnu/packages/libusb.scm +++ b/gnu/packages/libusb.scm @@ -274,14 +274,14 @@ (define-public python-libusb1 (define-public python-pyusb (package (name "python-pyusb") - (version "1.0.2") + (version "1.2.1") (source (origin (method url-fetch) (uri (pypi-uri "pyusb" version)) (sha256 (base32 - "0qkk2jn270jwwl1x26hmdhb14m9kkbrzzwzizdjcl1a29b6756sf")))) + "1fg7knfzybzija2b01pzrzhzsj989scl12sb2ra4f503l8279k54")))) (build-system python-build-system) (arguments `(#:tests? #f ; no tests @@ -302,6 +302,9 @@ (define-public python-pyusb "^libusb-.*\\.so\\..*")) "\""))) #t))))) + + (native-inputs + (list python-setuptools-scm)) (inputs (list libusb)) (home-page "https://pyusb.github.io/pyusb/") base-commit: 917a299831361f253ea664f009176b4bbe06900a -- 2.40.1 ------------=_1689852182-12178-1--