From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 05 08:18:40 2025 Received: (at submit) by debbugs.gnu.org; 5 Jan 2025 13:18:40 +0000 Received: from localhost ([127.0.0.1]:60353 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tUQWe-0002SI-4q for submit@debbugs.gnu.org; Sun, 05 Jan 2025 08:18:40 -0500 Received: from lists.gnu.org ([2001:470:142::17]:35560) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tUQWb-0002Rs-I0 for submit@debbugs.gnu.org; Sun, 05 Jan 2025 08:18:38 -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 1tUQWV-0002eI-3Y for guix-patches@gnu.org; Sun, 05 Jan 2025 08:18:31 -0500 Received: from sofi-shared.hosting.energy ([2001:41d0:602:1f56::] helo=sofi.hosting.energy) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tUQWQ-0002mp-Bn for guix-patches@gnu.org; Sun, 05 Jan 2025 08:18:30 -0500 Received: from [212.233.84.222] (helo=laptop) by sofi.hosting.energy with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1tUQWF-000424-CV for guix-patches@gnu.org; Sun, 05 Jan 2025 16:18:19 +0300 From: Evgeny Pisemsky To: guix-patches@gnu.org Subject: [PATCH] gnu: pcb2gcode: Update to pre-release. Date: Sun, 05 Jan 2025 16:18:11 +0300 Message-ID: <875xmte6wc.fsf@pisemsky.site> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-pcb2gcode-Update-to-pre-release.patch Received-SPF: permerror client-ip=2001:41d0:602:1f56::; envelope-from=mail@pisemsky.site; helo=sofi.hosting.energy X-Spam_score_int: -14 X-Spam_score: -1.5 X-Spam_bar: - X-Spam_report: (-1.5 / 5.0 requ) BAYES_00=-1.9, KHOP_HELO_FCRDNS=0.4, T_SPF_HELO_PERMERROR=0.01, T_SPF_PERMERROR=0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.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: -1.0 (-) >From a3d86f0c6e89116b6a4840c69ff1ba2b6290e93c Mon Sep 17 00:00:00 2001 Message-ID: From: Evgeny Pisemsky Date: Sun, 5 Jan 2025 13:35:51 +0300 Subject: [PATCH] gnu: pcb2gcode: Update to pre-release. * gnu/packages/engineering.scm (pcb2gcode): Update to pre-release, change indentation, run guix style. [version]: Use git-version. [source]: Use specific commit, do not recurse submodules (there are none). Change-Id: I97c5b6521c86606c572ce67efc60b13351b1b4cd --- gnu/packages/engineering.scm | 55 ++++++++++++++++++------------------ 1 file changed, 27 insertions(+), 28 deletions(-) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index f9c4ac9bbd..15827c7fdc 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -3489,37 +3489,36 @@ (define-public emacs-poke (deprecated-package "emacs-poke" poke)) (define-public pcb2gcode - (package - (name "pcb2gcode") - (version "2.5.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pcb2gcode/pcb2gcode") - (commit (string-append "v" version)) - (recursive? #t))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "01s41znkcq9x1rinsdqrrdj8p35isckrcxs14ajsi7wr39n1m5kk")))) - (build-system gnu-build-system) - (inputs - (list boost - geos - gerbv - glibmm - gtkmm-2 - (librsvg-for-system))) - (native-inputs - (list autoconf automake libtool pkg-config)) - (home-page "https://github.com/pcb2gcode/pcb2gcode") - (synopsis "Generate G-code for milling PCBs") - (description "pcb2gcode is a command-line program for isolation routing + (let ((commit "8c084afd00c6653dfa9cbf24a1dbeeb24f592aa9") + (revision "0")) + (package + (name "pcb2gcode") + (version (git-version "2.5.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pcb2gcode/pcb2gcode") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "19hyzd1601l51bwlv43j8l602nfacbjwqf54m5xsmj50718bcks2")))) + (build-system gnu-build-system) + (inputs (list boost + geos + gerbv + glibmm + gtkmm-2 + (librsvg-for-system))) + (native-inputs (list autoconf automake libtool pkg-config)) + (home-page "https://github.com/pcb2gcode/pcb2gcode") + (synopsis "Generate G-code for milling PCBs") + (description + "pcb2gcode is a command-line program for isolation routing and drilling of PCBs. It takes Gerber files as input and outputs G-code files for the milling of PCBs. It also includes an autoleveller for the automatic dynamic calibration of the milling depth.") - (license license:gpl3+))) + (license license:gpl3+)))) ;; libdxfrw has no readme, no version release, no tags. Initial commit says ;; "libdxfrw-0.6.3 import", but it shares no git history with "upstream" base-commit: e383e8e34097b064d4baa4207673c6ba30617347 -- 2.47.1 From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 11 12:00:56 2025 Received: (at 75381) by debbugs.gnu.org; 11 Jan 2025 17:00:56 +0000 Received: from localhost ([127.0.0.1]:44638 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tWer2-0008Bm-08 for submit@debbugs.gnu.org; Sat, 11 Jan 2025 12:00:56 -0500 Received: from sofi-shared.hosting.energy ([2001:41d0:602:1f56::]:41422 helo=sofi.hosting.energy) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tWeqz-0008BC-Qz for 75381@debbugs.gnu.org; Sat, 11 Jan 2025 12:00:54 -0500 Received: from [212.233.86.199] (helo=laptop) by sofi.hosting.energy with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1tWeqs-0007B9-Bp; Sat, 11 Jan 2025 20:00:46 +0300 From: Evgeny Pisemsky To: 75381@debbugs.gnu.org Subject: Re: [PATCH] gnu: pcb2gcode: Update to pre-release. Date: Sat, 11 Jan 2025 20:00:44 +0300 Message-ID: <87msfxnv43.fsf@pisemsky.site> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 1.4 (+) 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: This follows #72541 and fixes #68036. More specifically, this commit https://github.com/pcb2gcode/pcb2gcode/commit/a7c2ec216cb50fa4f01d61c358cb93e7a17b01d1 Content analysis details: (1.4 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 T_SPF_HELO_PERMERROR SPF: test of HELO record failed (permerror) 0.0 T_SPF_PERMERROR SPF: test of record failed (permerror) 0.0 FAKE_REPLY_C No description available. 0.4 KHOP_HELO_FCRDNS Relay HELO differs from its IP's reverse DNS 1.0 TVD_SUBJ_NUM_OBFU_MINFP No description available. X-Debbugs-Envelope-To: 75381 Cc: ludo@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 (-) This follows #72541 and fixes #68036. More specifically, this commit https://github.com/pcb2gcode/pcb2gcode/commit/a7c2ec216cb50fa4f01d61c358cb93e7a17b01d1 fixes incompatibility with newer geos that currently breaks build. From debbugs-submit-bounces@debbugs.gnu.org Sun Mar 09 18:32:58 2025 Received: (at 75381-done) by debbugs.gnu.org; 9 Mar 2025 22:32:58 +0000 Received: from localhost ([127.0.0.1]:34888 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1trPCc-0004Zs-K3 for submit@debbugs.gnu.org; Sun, 09 Mar 2025 18:32:58 -0400 Received: from mail-wm1-x32a.google.com ([2a00:1450:4864:20::32a]:49626) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1trPCZ-0004Za-U4 for 75381-done@debbugs.gnu.org; Sun, 09 Mar 2025 18:32:56 -0400 Received: by mail-wm1-x32a.google.com with SMTP id 5b1f17b1804b1-43cec5cd73bso5459825e9.3 for <75381-done@debbugs.gnu.org>; Sun, 09 Mar 2025 15:32:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1741559569; x=1742164369; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=M2sKEgNWv4nMhkA2QcoJ4T6o4ypDpuhmjoTcwHR5o7I=; b=ifDEombG9bTz2rNZhBvWKC8YuEa8YdWEoh7oPJZjYXlZ21mJ9amOQ8mMjXOc5FSbVP B+ncXxtZK/NLTe/uo/NZca1qzxF2o4Pfs7Xolx1FqBAG+BC7GH9ZmBSZcL5pkoo1pveK YYq6vKnKSKOpb5P5ytRN8GrI1cJhMicj5xNQOd3Gf6GPAdgRGIkuQk/ZH3tk98ZUA+// JFsW+gPDs+HUiqFSSnvRtumx1T4xWkLL0GwHu0Ln42IqIn9njDzsOUupKsnIOQ1UmYF7 LRLIwj8iU1O0qA3fWnhDcfsgiIi+fMtG9qEnMj4K7xZ1hVC0Ue7va2EmZDCiyl7nQ7XU l4Hw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1741559569; x=1742164369; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=M2sKEgNWv4nMhkA2QcoJ4T6o4ypDpuhmjoTcwHR5o7I=; b=rDZxC4KDii6Nxz+kMpoClGBf/AQJQ1L9xND9SMfWguVN3eS9MyqkmnC0UthVchPH54 1FzXVI41LHKFOyl/f9CcTGhhBeLuLtIN6mMwIW+VmFdBqonHbzq46qkJmRa27pHjY5CU yFTh2/TL/3/EQQnKXwpruy8CnwofMtxpmxaHLixDKJL8xs1AayGt7Xymn2MZjNmP2as/ rt1z7EympulcYkfLyeVnU0B+OqnNrHx3dpy22ljwJmL1s3h+Dtha3I/yGlUg/EfM8Ig1 eOXAmighqkYUXg3IR6F43mMSYQPqF/gIkvloGl4PAUF+Im+YF7JGeNyMhmJAWUOk5GTc bJ0g== X-Gm-Message-State: AOJu0YwbKEw8bpZgwHOK4leV9ffDEa+9+GlK9AIET4ujLzoUbBVV1DpC dVD4Yu2A8dF2mZ2u3a/TH3G/TKZzyALY+UH0OyY+PY8HGrjrzoFMhdzZaze3 X-Gm-Gg: ASbGncuZLfnpIKESpkW9b8UeHsKkAMVaXgSUDiUxhA6Rcj8tn4D3Ozm6aI/VfaOKwj5 93w0MddbOL6yQJMNzWXy455tqC46zZKriBROnFb+A2ZwatYvDL4xsJHcdIe8QzoCT5QSKYbmejh 0h6u+dSKgpNi51aJx+arG3EAGvy12vMYgt24U8EafP/8UoGCwFsR24dEfIfyJj6CVW4mTVJpl/m vpxR3yb5ZideAW6ElS55HcocxNGcdtkcmYjNxOdKhlaK92PL1sLuKALpREFggKnfdZE/ptXxY+F czXkqybP8A/n7ZJHepcLske5eQKKX6LVKDuxl/C8Yi+of3gU5C2UYgwQCy9pAU7F0Qi2XmUV3t3 /7hScpi9d7wTB3WrtjL59SW8Rr8TEjso= X-Google-Smtp-Source: AGHT+IHHiO13yW6MWdC7+w0S6ucLO8YGTURbod06xxSN+6CYEWjXsJBAz+yyqwaDNqkpLvxO4/7V9g== X-Received: by 2002:a05:6000:156e:b0:391:3d97:bd33 with SMTP id ffacd0b85a97d-3913d97be31mr3965073f8f.13.1741559569272; Sun, 09 Mar 2025 15:32:49 -0700 (PDT) Received: from guxtil (cpc100684-bagu15-2-0-cust967.1-3.cable.virginm.net. [86.8.111.200]) by smtp.gmail.com with ESMTPSA id 5b1f17b1804b1-43cfad9b823sm6286745e9.5.2025.03.09.15.32.48 for <75381-done@debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 09 Mar 2025 15:32:48 -0700 (PDT) From: Sharlatan Hellseher To: 75381-done@debbugs.gnu.org Subject: [PATCH] gnu: pcb2gcode: Update to pre-release. Date: Sun, 09 Mar 2025 22:32:47 +0000 Message-ID: <87tt81kf74.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 75381-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 (-) --=-=-= Content-Type: text/plain Hi, Thank you for the fixing patch and sorry for the long wait time on review (Guix team is working hard to improve patch review flow). I could not apply patch as it is with mumi or git am directly; instead changes were applied first and authored as Evgeny Pisemsky . --8<---------------cut here---------------start------------->8--- > $(./pre-inst-env guix build pcb2gcode)/bin/pcb2gcode --version 2.5.0 Git commit: Boost: 108300 Gerbv: 2.10.0 Geos: 3.12.1 --8<---------------cut here---------------end--------------->8--- Pushed to master as b1a268fc540885052634ee075a37259408818e17. -- Oleg --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQJKBAEBCgA0FiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmfOFw8WHHNoYXJsYXRh bnVzQGdtYWlsLmNvbQAKCRB21ye/9izStcx3D/9EQw4wBTU7vTiBptF9HBz3tab7 /bYBdMAmoR+DztQMxdv8h0QjBLzdF9lyS3vBwhhmi/tu/5LTi0y4jBdOrGLIfhLL 5nRTMvCk8KDPQyolQEFue+T2C4ymngs6Gysf2vAfzDJ+yfeEY6Ue6QnQ70CGs5aY 9svnnyCigLiQ8YrO8lmgxgiYV5C9UBnGxPHL84E/x7a0HXAhymJia33bpE6rkUDO laKrUlTkGwbEWbrmC+BWeNqno2MYh+O1VhZHWNlOEtNBMvYElPn1kR/e4mpIrHRk OGg/MpAaERqx3blHtnaDRvClVLOXLGLPC9AxegJ1qpD/V5O1duTjupLMyef6OfcJ IYxC4UC695sgRVcNV4BkrHiLgJEG6NKLA09c1QlBEfXJ1zPPUkM3k3cl04st85nd 2422Rax+Gob5MAAvXacF5jt/9nzOxvafN4TX99R/PVIw3k/PrUo1j2nTNgiaKyZB kLbXx3P92c6GKJ4G6qcTjtzo9Z+jgpSTe+B6O0IGTZzWnLHIFU1C7FIGYz47IJJA 0P0TDjvOABgqaODZjc3XMu6dl8eO0eqtfHV3RiKYB0I5Fl/qV2s2X7rrhuAkzcOD RDjkk20Uydxf6lu4Ilw1+0tw8Vi+N1TYZTip4g0MO3mkRHeVhHsN8DmU/MySUrSX ZS3q1I3clGafGqEZfw== =P2cM -----END PGP SIGNATURE----- --=-=-=-- From unknown Sat Aug 16 11:42:06 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 07 Apr 2025 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