From unknown Sun Jun 22 00:47:10 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49510: [PATCH] gnu: Add PuTTY. Resent-From: terramorpha@cock.li Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Sat, 10 Jul 2021 19:33:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 49510 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: 49510@debbugs.gnu.org X-Debbugs-Original-To: bug-guix@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.162594552314756 (code B ref -1); Sat, 10 Jul 2021 19:33:02 +0000 Received: (at submit) by debbugs.gnu.org; 10 Jul 2021 19:32:03 +0000 Received: from localhost ([127.0.0.1]:33517 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m2Ihm-0003pn-CJ for submit@debbugs.gnu.org; Sat, 10 Jul 2021 15:32:02 -0400 Received: from lists.gnu.org ([209.51.188.17]:33192) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m2Ihk-0003pV-1m for submit@debbugs.gnu.org; Sat, 10 Jul 2021 15:32:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:58934) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m2Ihj-0005Y7-P0 for bug-guix@gnu.org; Sat, 10 Jul 2021 15:31:59 -0400 Received: from mail.cock.li ([37.120.193.124]:34860) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m2Ihh-0002oi-9D for bug-guix@gnu.org; Sat, 10 Jul 2021 15:31:59 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1625945512; bh=+OZVNmzFwKOUEfJDtN7IX7QTDBposCmf/tLdSSCVO4s=; h=Date:From:To:Subject:From; b=SbZf4IAu2XmnUsZygz4hHnw0tID/4ob/Ej82DZ5CVkKiUQMV4B5LAzx+Zpa2Q0nr6 CNvHLXpETu24xsQJLrfw14qbetEW/G+9p/Fz7rA3P8PejzNHOc5cqsdveHN/gUbdAA JQarfPKKsTM51MIEdzSRgArTaleQLBQjO24zrGw5iKWrICnJNGoujLbI9OQcKGr9Ln ChBleOlYTlb4LYgmgIaj/qid1yeMpsnBzM3Y4FK5SoUE4AXOpX7Dm5znfaJ/xOAygW AFmTJhFStLN08ew35cNYus/2sSYc2e+/2XyDwW01puPIFq+IgGSBfk6BB7ikFsEEO9 qQqPP50QB/vsw== Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Sat, 10 Jul 2021 15:31:51 -0400 From: terramorpha@cock.li Message-ID: <1e2aa5364dc3f358a123e915d79c275e@cock.li> X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 Received-SPF: pass client-ip=37.120.193.124; envelope-from=terramorpha@cock.li; helo=mail.cock.li X-Spam_score_int: -7 X-Spam_score: -0.8 X-Spam_bar: / X-Spam_report: (-0.8 / 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_VALIDITY_RPBL=1.31, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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 (--) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 19b58501e9..af3082b954 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -4100,3 +4100,37 @@ on hub/switched networks. It is based on @acronym{ARP} packets, it will send @acronym{ARP} requests and sniff for replies.") (home-page "https://github.com/netdiscover-scanner/netdiscover") (license license:gpl3+))) + +(define-public putty + (package + (name "putty") + (version "0.74.0") + (source (origin + ;; (method url-fetch) + (method url-fetch) + (uri "http://www.putty.be/0.74/putty-0.74.tar.gz") + (sha256 (base32 "0zc43g8ycyf712cdrja4k8ih5s3agw1k0nq0jkifdn8xwn4d7mfx")))) + (arguments + `(#:tests? + #f + #:phases (modify-phases %standard-phases + (add-before 'configure 'go-into-unix/ + (lambda _ (begin + (chdir "unix") + #t)))))) + (build-system gnu-build-system) + (inputs `(("perl" ,perl) + ("python" ,python) + ("python2" ,python-2.7) + ("pkg-config" ,pkg-config) + ("gtk+" ,gtk+))) + (synopsis "A graphical @acronym{SSH} and telnet client") + (description + "Putty is a powerful terminal client. It supports @acronym{SSH}, telnet, +and raw socket connections with good terminal emulation. It supports public +key authentication and Kerberos single-sign-on. It also includes command-line +@acronym{SFTP} and @acronym{SCP} implementations.") + (home-page "https://www.chiark.greenend.org.uk/~sgtatham/putty/") + (license (license:non-copyleft + "https://www.chiark.greenend.org.uk/~sgtatham/putty/licence.html" + "The putty license")))) From unknown Sun Jun 22 00:47:10 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49510: [PATCH] gnu: Add PuTTY. Resent-From: Leo Prikler Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Mon, 12 Jul 2021 05:43:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49510 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: terramorpha@cock.li, 49510@debbugs.gnu.org Received: via spool by 49510-submit@debbugs.gnu.org id=B49510.162606855214848 (code B ref 49510); Mon, 12 Jul 2021 05:43:02 +0000 Received: (at 49510) by debbugs.gnu.org; 12 Jul 2021 05:42:32 +0000 Received: from localhost ([127.0.0.1]:36327 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m2oi8-0003rQ-1S for submit@debbugs.gnu.org; Mon, 12 Jul 2021 01:42:32 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:54331) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m2oi2-0003rD-TY for 49510@debbugs.gnu.org; Mon, 12 Jul 2021 01:42:30 -0400 Received: from nijino.local (80-121-26-175.adsl.highway.telekom.at [80.121.26.175]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4GNXhv19xCz1LBRv; Mon, 12 Jul 2021 07:42:22 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 mailrelay.tugraz.at 4GNXhv19xCz1LBRv DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1626068543; bh=gjoqD5/LuO8rHnNDeQvaOop0hWmle7kVEE83C4+uYh8=; h=Subject:From:To:Date:In-Reply-To:References:From; b=YUbXE/4sDhOWzNZ5L3aeem2lyBGh7z4yB8QDAlziDK9fPwGyKFDCMoMNCNCjff4IQ yIbCIl9sxzvr3u7Yw8eTtHXB/MSQJAxsd0/edXTwik70SAZVWZ5gpWlAGkdJm1U4zY Z2768dkfODAM8RLGCkb+iAiweKfN2he9m/KGVvTw= Message-ID: <4d1b1727da1000b37adf2285ac5b84c09b0cb438.camel@student.tugraz.at> From: Leo Prikler Date: Mon, 12 Jul 2021 07:42:21 +0200 In-Reply-To: <1e2aa5364dc3f358a123e915d79c275e@cock.li> References: <1e2aa5364dc3f358a123e915d79c275e@cock.li> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-TUG-Backscatter-control: bt4lQm5Tva3SBgCuw0EnZw X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 X-Spam-Score: -2.3 (--) 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 (---) Hi terramorpha, your patch is missing the ChangeLog part of the commit message, see `info '(guix)Submitting Patches'` for more information. Am Samstag, den 10.07.2021, 15:31 -0400 schrieb terramorpha@cock.li: > diff --git a/gnu/packages/networking.scm > b/gnu/packages/networking.scm > index 19b58501e9..af3082b954 100644 > --- a/gnu/packages/networking.scm > +++ b/gnu/packages/networking.scm > @@ -4100,3 +4100,37 @@ on hub/switched networks. It is based on > @acronym{ARP} packets, it will send > @acronym{ARP} requests and sniff for replies.") > (home-page "https://github.com/netdiscover-scanner/netdiscover") > (license license:gpl3+))) > + > +(define-public putty > + (package > + (name "putty") > + (version "0.74.0") > + (source (origin > + ;; (method url-fetch) > + (method url-fetch) > + (uri "http://www.putty.be/0.74/putty-0.74.tar.gz") You ought to reuse version here, so that people don't need to rewrite it when the version changes. You can use "version-major+minor" to access the "0.74" part, but I assume this is one of the versions, that gets patch added to the tarball if it exists. Such packages too exist somewhere in Guix, but I haven't found an example in the quick time I'm typing this reply. > + (sha256 (base32 > "0zc43g8ycyf712cdrja4k8ih5s3agw1k0nq0jkifdn8xwn4d7mfx")))) Please watch your line length, it normally shouldn't exceed 80 characters. > + (arguments > + `(#:tests? > + #f Never let #tests? #f stay uncommented. > + #:phases (modify-phases %standard-phases > + (add-before 'configure 'go-into-unix/ > + (lambda _ (begin > + (chdir "unix") > + #t)))))) > + (build-system gnu-build-system) > + (inputs `(("perl" ,perl) > + ("python" ,python) > + ("python2" ,python-2.7) > + ("pkg-config" ,pkg-config) > + ("gtk+" ,gtk+))) Your formatting generally looks a bit off. #:phases should go to an extra line, as should inputs. #:tests? #f OTOH is okay in one line with the aforementioned comment. > + (synopsis "A graphical @acronym{SSH} and telnet client") > + (description > + "Putty is a powerful terminal client. It supports > @acronym{SSH}, > telnet, > +and raw socket connections with good terminal emulation. It > supports > public > +key authentication and Kerberos single-sign-on. It also includes > command-line > +@acronym{SFTP} and @acronym{SCP} implementations.") > + (home-page "https://www.chiark.greenend.org.uk/~sgtatham/putty/" > ) > + (license (license:non-copyleft > + > "https://www.chiark.greenend.org.uk/~sgtatham/putty/licence.html" > + "The putty license")))) Putty claims, that this is license:expat and it does look like one. Regards, Leo From unknown Sun Jun 22 00:47:10 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49510: [PATCH] gnu: Add PuTTY. References: <1e2aa5364dc3f358a123e915d79c275e@cock.li> In-Reply-To: <1e2aa5364dc3f358a123e915d79c275e@cock.li> Resent-From: terramorpha@cock.li Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Tue, 13 Jul 2021 17:27:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49510 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: 49510@debbugs.gnu.org Cc: leo.prikler@student.tugraz.at Received: via spool by 49510-submit@debbugs.gnu.org id=B49510.162619716511666 (code B ref 49510); Tue, 13 Jul 2021 17:27:01 +0000 Received: (at 49510) by debbugs.gnu.org; 13 Jul 2021 17:26:05 +0000 Received: from localhost ([127.0.0.1]:41804 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3MAW-000326-Qs for submit@debbugs.gnu.org; Tue, 13 Jul 2021 13:26:05 -0400 Received: from mail.cock.li ([37.120.193.124]:33094) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3MAR-00031S-1e for 49510@debbugs.gnu.org; Tue, 13 Jul 2021 13:26:03 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1626197151; bh=uAf28WV6BZwDBSVSJL6R0pXxiJPGTAOFfmDQ7uUOfqI=; h=Date:From:To:Cc:Subject:From; b=uxUqIa1NbDFEy/eIF5n6lAW8GbJFAMlKTDVghOuUp2Y224XPDH7bx3wpneYFHSLXN 8SvXllenvenUDZo2moQDj8LA28ZroyXJw78Q9OJG0zooTOr+Cy6r+onAFBYuT7FfEZ HmXc+QQUdkwGvsEmAzeWSW+ep0l1H1LRWekyu/TF66uOm6bTWQl3/9y3LUMCEFaEZH ZbyuZVr3F0JouksM5hj6IeAWpdOfA1O5o2N2vt3ocY9agOlMYP3xQU//RNWO6sJkbj mBD2y+89///DXb3UIeF6tL+jXo7q3xof6RMTibEqyNIFs+pzvsLL3v1G7Gbl+yKPOX 0tirN4hk9dbpQ== Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 13 Jul 2021 13:25:51 -0400 From: terramorpha@cock.li Message-ID: X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 X-Spam-Score: -0.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: -1.0 (-) Hi, thank you for the review. I corrected the version of the package (putty doesn't use major.minor.patch, only major.minor), I fixed the lines that were over the 80 character limit, re added the check phase, corrected the formatting and put in the expat license. However, I do not know what you mean by the "ChangeLog part of the commit message", I thought that standalone patch didn't have a commit message attached. Could you elaborate? Here is the modified patch. diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 19b58501e9..ce00a016e6 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -4100,3 +4100,38 @@ on hub/switched networks. It is based on @acronym{ARP} packets, it will send @acronym{ARP} requests and sniff for replies.") (home-page "https://github.com/netdiscover-scanner/netdiscover") (license license:gpl3+))) + +(define-public putty + (package + (name "putty") + (version "0.75") + (source + (origin + (method url-fetch) + (uri (string-append "http://www.putty.be/" version + "/putty-" version ".tar.gz")) + (sha256 + (base32 "1xgrr1fbirw79zafspg2b6crzfmlfw910y79md4r7gnxgq1kn5yk")))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'configure 'go-into-unix/ + (lambda _ (begin + (chdir "unix") + #t)))))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("gtk+" ,gtk+) + ("perl" ,perl) + ("python" ,python) + ("python2" ,python-2.7))) + (synopsis "Graphical @acronym{SSH} and telnet client") + (description + "Putty is a powerful terminal client. It supports @acronym{SSH}, telnet, +and raw socket connections with good terminal emulation. It supports public key +authentication and Kerberos single-sign-on. It also includes command-line +@acronym{SFTP} and @acronym{SCP} implementations.") + (home-page "https://www.chiark.greenend.org.uk/~sgtatham/putty/") + (license license:expat))) From unknown Sun Jun 22 00:47:10 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49510: [PATCH] gnu: Add PuTTY. Resent-From: Leo Prikler Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Tue, 13 Jul 2021 17:46:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49510 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: terramorpha@cock.li, 49510@debbugs.gnu.org Received: via spool by 49510-submit@debbugs.gnu.org id=B49510.162619830313419 (code B ref 49510); Tue, 13 Jul 2021 17:46:01 +0000 Received: (at 49510) by debbugs.gnu.org; 13 Jul 2021 17:45:03 +0000 Received: from localhost ([127.0.0.1]:41833 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3MSt-0003UM-4f for submit@debbugs.gnu.org; Tue, 13 Jul 2021 13:45:03 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:30666) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3MSp-0003Ta-FM for 49510@debbugs.gnu.org; Tue, 13 Jul 2021 13:45:01 -0400 Received: from nijino.local (80-121-26-175.adsl.highway.telekom.at [80.121.26.175]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4GPSh664c5z1LBCr; Tue, 13 Jul 2021 19:44:54 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 mailrelay.tugraz.at 4GPSh664c5z1LBCr DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1626198295; bh=kyKNcDWj07Muf2YV0YvZVXCi7TnpDCxba/TyMLonFAo=; h=Subject:From:To:Date:In-Reply-To:References:From; b=l5WtbG2Lu+Q8GzSakvNrO4jRhc16fjVdCc0C3/psQ2AlH2brOE6ctfrcJPHeuhTEh Ukgnk1n6yMh+kxyghNRd6PDE0MjdQJDiB//i2aulGR2AvLXexfG7FuSbu7EEEZYNS3 1TRCqoZbwrxCU7Lo94PdwrB9M1E0B6oHqiKL8VJg= Message-ID: From: Leo Prikler Date: Tue, 13 Jul 2021 19:44:54 +0200 In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-TUG-Backscatter-control: bt4lQm5Tva3SBgCuw0EnZw X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 X-Spam-Score: -2.3 (--) 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 (---) Am Dienstag, den 13.07.2021, 13:25 -0400 schrieb terramorpha@cock.li: > Hi, thank you for the review. > > I corrected the version of the package (putty doesn't use > major.minor.patch, only major.minor), I fixed the lines that were > over the 80 character limit, re added the check phase, corrected the > formatting and put in the expat license. However, I do not know what > you mean by the "ChangeLog part of the commit message", I thought > that standalone patch didn't have a commit message attached. > Could you elaborate? > > Here is the modified patch. Please don't send raw diffs and more importantly don't copypaste them into your mail client (unless you know exactly, that your mail client behaves in a correct manner, which most don't). Mail clients have a tendency to mess up whitespace and line lengths, which can and does break diffs. Instead, use `git format-patch` and attach the generated patch file or (the following way is preferred) use `git send-email`. When using format-patch/send-email, the full commit message and name/email of the committer will be transmitted as well, not just a raw diff. Your second patch LGTM, perhaps with a few fixable formatting stuffs, but I'll have to ask you to resend it, since I can't `git am` it. Thanks, Leo > diff --git a/gnu/packages/networking.scm > b/gnu/packages/networking.scm > index 19b58501e9..ce00a016e6 100644 > --- a/gnu/packages/networking.scm > +++ b/gnu/packages/networking.scm > @@ -4100,3 +4100,38 @@ on hub/switched networks. It is based on > @acronym{ARP} packets, it will send > @acronym{ARP} requests and sniff for replies.") > (home-page "https://github.com/netdiscover-scanner/netdiscover") > (license license:gpl3+))) > + > +(define-public putty > + (package > + (name "putty") > + (version "0.75") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "http://www.putty.be/" version > + "/putty-" version ".tar.gz")) > + (sha256 > + (base32 > "1xgrr1fbirw79zafspg2b6crzfmlfw910y79md4r7gnxgq1kn5yk")))) > + (arguments > + `(#:phases > + (modify-phases %standard-phases > + (add-before 'configure 'go-into-unix/ > + (lambda _ (begin > + (chdir "unix") > + #t)))))) > + (build-system gnu-build-system) > + (native-inputs > + `(("pkg-config" ,pkg-config))) > + (inputs > + `(("gtk+" ,gtk+) > + ("perl" ,perl) > + ("python" ,python) > + ("python2" ,python-2.7))) > + (synopsis "Graphical @acronym{SSH} and telnet client") > + (description > + "Putty is a powerful terminal client. It supports > @acronym{SSH}, > telnet, > +and raw socket connections with good terminal emulation. It > supports > public key > +authentication and Kerberos single-sign-on. It also includes > command-line > +@acronym{SFTP} and @acronym{SCP} implementations.") > + (home-page "https://www.chiark.greenend.org.uk/~sgtatham/putty/" > ) > + (license license:expat))) From unknown Sun Jun 22 00:47:10 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49510: [PATCH] gnu: Add PuTTY. References: <1e2aa5364dc3f358a123e915d79c275e@cock.li> In-Reply-To: <1e2aa5364dc3f358a123e915d79c275e@cock.li> Resent-From: terramorpha@cock.li Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Tue, 13 Jul 2021 20:34:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49510 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: 49510@debbugs.gnu.org Cc: leo.prikler@student.tugraz.at Received: via spool by 49510-submit@debbugs.gnu.org id=B49510.162620843416065 (code B ref 49510); Tue, 13 Jul 2021 20:34:01 +0000 Received: (at 49510) by debbugs.gnu.org; 13 Jul 2021 20:33:54 +0000 Received: from localhost ([127.0.0.1]:42150 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3P6I-0004B3-EK for submit@debbugs.gnu.org; Tue, 13 Jul 2021 16:33:54 -0400 Received: from mail.cock.li ([37.120.193.124]:46922) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3P6G-0004Ao-6A for 49510@debbugs.gnu.org; Tue, 13 Jul 2021 16:33:53 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1626208424; bh=y4D5HveLibenGDQ/PNy3q0bc/YT3oB27j/UdEfdT+9Q=; h=Date:From:To:Cc:Subject:From; b=ixtt4Zmah0xuj0LMX7LGibB8fMuTLjvQROk+3CN2iFWqN0UAyIo7tGVWbqpE4CWzx ZE4qrK0tXthCdbFF7klB6YvkE0ymUPELvxuiWtDapQyeaI8uG7vSKRL+TOIO+eL9XI KkEocRtnCekicSmboJhjJ6MZxFB7h3GGEftZbFCUC5yuaWiryd95g4AKE2FnPJX3Q7 h2cWHAE+3zwZLqX4bqRsbJ54fbjgBMtc9U+bb8O1tRW03ZOI6/3tOa2VDYpZuJ3BiF n7NDt2ujKTQniHsaFVEhvGdm9PQki/2nDXJEmNoGElTun1qArQ+AMDxkjf7bow8GDk JIum0SbsctUIQ== Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 13 Jul 2021 16:33:44 -0400 From: terramorpha@cock.li Message-ID: <0e89f24de0ce1be505b101afda89917e@cock.li> X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 X-Spam-Score: -0.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: -1.0 (-) Thank you for the quick response! I attached a patched created by `git format-patch`. Hopefully, this one will work. From unknown Sun Jun 22 00:47:10 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49510: [PATCH] gnu: Add PuTTY. Resent-From: terramorpha@cock.li Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Tue, 13 Jul 2021 20:51:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49510 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: 49510@debbugs.gnu.org Cc: leo.prikler@student.tugraz.at Received: via spool by 49510-submit@debbugs.gnu.org id=B49510.162620940726008 (code B ref 49510); Tue, 13 Jul 2021 20:51:01 +0000 Received: (at 49510) by debbugs.gnu.org; 13 Jul 2021 20:50:07 +0000 Received: from localhost ([127.0.0.1]:42176 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3PLz-0006lP-2a for submit@debbugs.gnu.org; Tue, 13 Jul 2021 16:50:07 -0400 Received: from mail.cock.li ([37.120.193.124]:50728) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m3PLu-0006kf-Tr for 49510@debbugs.gnu.org; Tue, 13 Jul 2021 16:50:06 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1626209395; bh=0AVYSoJF7mWGgjC7gKqVx5ByzoGnQCfP8pNwqoXxZjM=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=NEomlI0dSDosFySoq0TtIjBqBfERvr1MeWmLjBLxGxHqguuSIeykBA59yFVCAi8D5 pWoJ9CNzy8ueYT6ZViC+m8gSN9GXBJgi64ooMQz8D7CluPhDELCVNOyAdncQ8ruFPO VcdRGIO0SaXEYkO3AL815HB1/zIA/0Tep3FnJvXZBDPaHCPFO/vb+3xuYhHrutF8C4 FHMHqsbxRLxLOi2fexbZp004PSFtzEk3W/v5MclSRCMpeKQ9/CS62U0eqF9gqL8L5n Yyskq/HygulKRb8s+OeEdPgxuivx4whtuxW3o0MVmHjVlV1tsJ2fv0A3L5Lv7mzbkH NvUTG06MI3tPw== Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 13 Jul 2021 16:49:54 -0400 From: terramorpha@cock.li In-Reply-To: References: <0e89f24de0ce1be505b101afda89917e@cock.li> Message-ID: <982a4b2429e41494b2b11130a03aad89@cock.li> X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 X-Spam-Score: -0.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: -1.0 (-) Sorry for wasting your time, there seems to be a problem with my client's attachments. From unknown Sun Jun 22 00:47:10 2025 X-Loop: help-debbugs@gnu.org Subject: bug#49510: [PATCH] References: <1e2aa5364dc3f358a123e915d79c275e@cock.li> In-Reply-To: <1e2aa5364dc3f358a123e915d79c275e@cock.li> Resent-From: Justin Veilleux Original-Sender: "Debbugs-submit" Resent-CC: bug-guix@gnu.org Resent-Date: Thu, 15 Jul 2021 15:40:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 49510 X-GNU-PR-Package: guix X-GNU-PR-Keywords: patch To: 49510@debbugs.gnu.org Cc: leo.prikler@student.tugraz.at Received: via spool by 49510-submit@debbugs.gnu.org id=B49510.162636356919980 (code B ref 49510); Thu, 15 Jul 2021 15:40:02 +0000 Received: (at 49510) by debbugs.gnu.org; 15 Jul 2021 15:39:29 +0000 Received: from localhost ([127.0.0.1]:49458 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m43SS-0005CB-LH for submit@debbugs.gnu.org; Thu, 15 Jul 2021 11:39:28 -0400 Received: from mail-pg1-f171.google.com ([209.85.215.171]:43645) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m43Q3-00057K-9W for 49510@debbugs.gnu.org; Thu, 15 Jul 2021 11:37:01 -0400 Received: by mail-pg1-f171.google.com with SMTP id y4so6815177pgl.10 for <49510@debbugs.gnu.org>; Thu, 15 Jul 2021 08:36:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to:cc; bh=PgCTttLE+i/2EJRMr6A4n6ImA5yuxZ8gV4vQdpaWwuw=; b=HE2+g0fIoPjFTSe3VxExAqebhtJg/rmUgzO3B0CRCxvKsMIdUNjDbvkWEw2FvKojYg v1eYgBnOAdmSQmSof1d4HwUUiwkm6xHxDZVbY34C480a6f7dD7CueW7fktofnEgvyozv MClrezDP73TgkSHavIN4ZeU5/esf9rhumE5HUxy0r+OTMHgrS4KgBwIXbIRDgQWDisKA nKeg/uWZgrbABoBrHnpMMKtrzNCb+pZLeDX2W2waXdNh9/iozFC39F0EiORuZPcb8mFc 3qsOboTNneRS44vYvENNUCuJ941Ev+vsAjoFEEWnU0URdUpYXyY47eK8YTw9jivZjllb N51A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to:cc; bh=PgCTttLE+i/2EJRMr6A4n6ImA5yuxZ8gV4vQdpaWwuw=; b=Zc/Vq/4dAloBYLeFfUzV5LGTbDobkN1r1QoKuV09eEORQMWoX9ooZcRScgqThRcWSB pga8lvaDQW14gysoXHUsqxHm4JHvAc0eD8qWUggaDV6Wx5NoeUG4q8fUTJdcSbg4O+Ej b5hALrJDYaDQAjotxPEk9Fdu59RLX/lhK1kTjrb/b0Z/CedYBT6Q3sWe6uDL15qsf9ru h/cU0BEGUgIBLrjkz9n+Qy6oBMJi+7PbCyXkmCiDk3ahqIOsbSAF8EXRL/QudENFiQoT IjJfkaSNH025XdrtajUXgBXwjh4dKBJVciSHJPVmvsZhr+EixUgfkaU8JtmU7quXuvof B8AA== X-Gm-Message-State: AOAM532UgWgUT1m2kuHiVQLTUK2yt2um2oyAwRy6SMmowPtfCv1Xu2oy tx99mP8NRRTv0UP0B4VM6Rcm6LKzXqj4a3jCiHSOHFb3gLk= X-Google-Smtp-Source: ABdhPJzO+9y2imOxIp6LNDRISAc7SbtoGwlmmCFQs84sxRmmNbZwU18OGPGIs+w85tt5ThG9GLT6yGoQ0tiCI6wnnvw= X-Received: by 2002:a63:4c03:: with SMTP id z3mr5109372pga.130.1626363412984; Thu, 15 Jul 2021 08:36:52 -0700 (PDT) MIME-Version: 1.0 From: Justin Veilleux Date: Thu, 15 Jul 2021 11:36:42 -0400 Message-ID: Content-Type: multipart/mixed; boundary="00000000000081cb9405c72b3dda" X-Spam-Score: 0.3 (/) X-Mailman-Approved-At: Thu, 15 Jul 2021 11:39:27 -0400 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.7 (/) --00000000000081cb9405c72b3dda Content-Type: multipart/alternative; boundary="00000000000081cb9205c72b3dd8" --00000000000081cb9205c72b3dd8 Content-Type: text/plain; charset="UTF-8" from another address --00000000000081cb9205c72b3dd8 Content-Type: text/html; charset="UTF-8"
from another address
--00000000000081cb9205c72b3dd8-- --00000000000081cb9405c72b3dda Content-Type: text/x-patch; charset="US-ASCII"; name="file.patch" Content-Disposition: attachment; filename="file.patch" Content-Transfer-Encoding: base64 Content-ID: X-Attachment-Id: f_kr52rpvv0 RnJvbSBhYWU0NzU4OGE5ZWZjMjRkNjhhMWRmMzRiMDVjMGE4NWEwMGM0ZDFlIE1vbiBTZXAgMTcg MDA6MDA6MDAgMjAwMQpGcm9tOiB0ZXJyYW1vcnBoYSA8dGVycmFtb3JwaGFAY29jay5saT4KRGF0 ZTogTW9uLCAxMiBKdWwgMjAyMSAxMjozODo1NyAtMDQwMApTdWJqZWN0OiBbUEFUQ0hdIGdudTog QWRkIHB1dHR5LgoKKiBnbnUvcGFja2FnZXMvbmV0d29ya2luZy5zY20gKHB1dHR5KTogTmV3IHZh cmlhYmxlLgotLS0KIGdudS9wYWNrYWdlcy9uZXR3b3JraW5nLnNjbSB8IDM1ICsrKysrKysrKysr KysrKysrKysrKysrKysrKysrKysrKysrCiAxIGZpbGUgY2hhbmdlZCwgMzUgaW5zZXJ0aW9ucygr KQoKZGlmZiAtLWdpdCBhL2dudS9wYWNrYWdlcy9uZXR3b3JraW5nLnNjbSBiL2dudS9wYWNrYWdl cy9uZXR3b3JraW5nLnNjbQppbmRleCAxOWI1ODUwMWU5Li5jZTAwYTAxNmU2IDEwMDY0NAotLS0g YS9nbnUvcGFja2FnZXMvbmV0d29ya2luZy5zY20KKysrIGIvZ251L3BhY2thZ2VzL25ldHdvcmtp bmcuc2NtCkBAIC00MTAwLDMgKzQxMDAsMzggQEAgb24gaHViL3N3aXRjaGVkIG5ldHdvcmtzLiAg SXQgaXMgYmFzZWQgb24gQGFjcm9ueW17QVJQfSBwYWNrZXRzLCBpdCB3aWxsIHNlbmQKIEBhY3Jv bnlte0FSUH0gcmVxdWVzdHMgYW5kIHNuaWZmIGZvciByZXBsaWVzLiIpCiAgICAoaG9tZS1wYWdl ICJodHRwczovL2dpdGh1Yi5jb20vbmV0ZGlzY292ZXItc2Nhbm5lci9uZXRkaXNjb3ZlciIpCiAg ICAobGljZW5zZSBsaWNlbnNlOmdwbDMrKSkpCisKKyhkZWZpbmUtcHVibGljIHB1dHR5CisgIChw YWNrYWdlCisgICAgKG5hbWUgInB1dHR5IikKKyAgICAodmVyc2lvbiAiMC43NSIpCisgICAgKHNv dXJjZQorICAgICAob3JpZ2luCisgICAgICAgKG1ldGhvZCB1cmwtZmV0Y2gpCisgICAgICAgKHVy aSAoc3RyaW5nLWFwcGVuZCAiaHR0cDovL3d3dy5wdXR0eS5iZS8iIHZlcnNpb24KKyAgICAgICAg ICAgICAgICAgICAgICAgICAgICIvcHV0dHktIiB2ZXJzaW9uICIudGFyLmd6IikpCisgICAgICAg KHNoYTI1NgorICAgICAgICAoYmFzZTMyICIxeGdycjFmYmlydzc5emFmc3BnMmI2Y3J6Zm1sZnc5 MTB5NzltZDRyN2dueGdxMWtuNXlrIikpKSkKKyAgICAoYXJndW1lbnRzCisgICAgIGAoIzpwaGFz ZXMKKyAgICAgICAobW9kaWZ5LXBoYXNlcyAlc3RhbmRhcmQtcGhhc2VzCisgICAgICAgICAoYWRk LWJlZm9yZSAnY29uZmlndXJlICdnby1pbnRvLXVuaXgvCisgICAgICAgICAgIChsYW1iZGEgXyAo YmVnaW4KKyAgICAgICAgICAgICAgICAgIChjaGRpciAidW5peCIpCisgICAgICAgICAgICAgICAg ICAjdCkpKSkpKQorICAgIChidWlsZC1zeXN0ZW0gZ251LWJ1aWxkLXN5c3RlbSkKKyAgICAobmF0 aXZlLWlucHV0cworICAgICBgKCgicGtnLWNvbmZpZyIgLHBrZy1jb25maWcpKSkKKyAgICAoaW5w dXRzCisgICAgIGAoKCJndGsrIiAsZ3RrKykKKyAgICAgICAoInBlcmwiICxwZXJsKQorICAgICAg ICgicHl0aG9uIiAscHl0aG9uKQorICAgICAgICgicHl0aG9uMiIgLHB5dGhvbi0yLjcpKSkKKyAg ICAoc3lub3BzaXMgIkdyYXBoaWNhbCBAYWNyb255bXtTU0h9IGFuZCB0ZWxuZXQgY2xpZW50IikK KyAgICAoZGVzY3JpcHRpb24KKyAgICAgIlB1dHR5IGlzIGEgcG93ZXJmdWwgdGVybWluYWwgY2xp ZW50LiAgSXQgc3VwcG9ydHMgQGFjcm9ueW17U1NIfSwgdGVsbmV0LAorYW5kIHJhdyBzb2NrZXQg Y29ubmVjdGlvbnMgd2l0aCBnb29kIHRlcm1pbmFsIGVtdWxhdGlvbi4gIEl0IHN1cHBvcnRzIHB1 YmxpYyBrZXkKK2F1dGhlbnRpY2F0aW9uIGFuZCBLZXJiZXJvcyBzaW5nbGUtc2lnbi1vbi4gIEl0 IGFsc28gaW5jbHVkZXMgY29tbWFuZC1saW5lCitAYWNyb255bXtTRlRQfSBhbmQgQGFjcm9ueW17 U0NQfSBpbXBsZW1lbnRhdGlvbnMuIikKKyAgICAoaG9tZS1wYWdlICJodHRwczovL3d3dy5jaGlh cmsuZ3JlZW5lbmQub3JnLnVrL35zZ3RhdGhhbS9wdXR0eS8iKQorICAgIChsaWNlbnNlIGxpY2Vu c2U6ZXhwYXQpKSkKLS0gCjIuMzIuMAoK --00000000000081cb9405c72b3dda-- From unknown Sun Jun 22 00:47:10 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: terramorpha@cock.li Subject: bug#49510: closed (Re: [PATCH]) Message-ID: References: <0b1e7ac06b9aa40a3a3033ccb7f0efff4cc8759b.camel@student.tugraz.at> <1e2aa5364dc3f358a123e915d79c275e@cock.li> X-Gnu-PR-Message: they-closed 49510 X-Gnu-PR-Package: guix X-Gnu-PR-Keywords: patch Reply-To: 49510@debbugs.gnu.org Date: Thu, 15 Jul 2021 19:03:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1626375782-25508-1" This is a multi-part message in MIME format... ------------=_1626375782-25508-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #49510: [PATCH] gnu: Add PuTTY. which was filed against the guix package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 49510@debbugs.gnu.org. --=20 49510: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D49510 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1626375782-25508-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 49510-done) by debbugs.gnu.org; 15 Jul 2021 19:02:07 +0000 Received: from localhost ([127.0.0.1]:49738 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m46cZ-0006cB-2v for submit@debbugs.gnu.org; Thu, 15 Jul 2021 15:02:07 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:47870) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m46cV-0006c1-Va for 49510-done@debbugs.gnu.org; Thu, 15 Jul 2021 15:02:06 -0400 Received: from nijino.local (80-121-26-175.adsl.highway.telekom.at [80.121.26.175]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4GQkJ8177Sz3xS7; Thu, 15 Jul 2021 21:02:00 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1626375720; bh=lREZKjUQzcrWnzia1H9lzA362WRPclisOC7mxMUIxzQ=; h=Subject:From:To:Cc:Date:In-Reply-To:References; b=aR7bnoBEOOhAUnpQ/KzBUrfc3dCbdPbIfI/VniYq/H3thYYW21KU6dfY2g6qIRKEg 0ggVwCsxYUF9ggGlz0Iyul+OwoyRLDVO5oKefTMYSpRVPMH+OjNMB/Dyoob793PuYl zffPm0KD0e/LSNw3PDHZzxwCv4Nwy4DfHPftMAK0= Message-ID: <0b1e7ac06b9aa40a3a3033ccb7f0efff4cc8759b.camel@student.tugraz.at> Subject: Re: [PATCH] From: Leo Prikler To: Justin Veilleux , 49510-done@debbugs.gnu.org Date: Thu, 15 Jul 2021 21:01:59 +0200 In-Reply-To: References: Content-Type: text/plain User-Agent: Evolution 3.34.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-TUG-Backscatter-control: bt4lQm5Tva3SBgCuw0EnZw X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 49510-done Cc: terramorpha 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 (---) Hi, I've cleaned up the patch and pushed it. Thanks, Leo ------------=_1626375782-25508-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 10 Jul 2021 19:32:03 +0000 Received: from localhost ([127.0.0.1]:33517 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m2Ihm-0003pn-CJ for submit@debbugs.gnu.org; Sat, 10 Jul 2021 15:32:02 -0400 Received: from lists.gnu.org ([209.51.188.17]:33192) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m2Ihk-0003pV-1m for submit@debbugs.gnu.org; Sat, 10 Jul 2021 15:32:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:58934) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m2Ihj-0005Y7-P0 for bug-guix@gnu.org; Sat, 10 Jul 2021 15:31:59 -0400 Received: from mail.cock.li ([37.120.193.124]:34860) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m2Ihh-0002oi-9D for bug-guix@gnu.org; Sat, 10 Jul 2021 15:31:59 -0400 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=cock.li; s=mail; t=1625945512; bh=+OZVNmzFwKOUEfJDtN7IX7QTDBposCmf/tLdSSCVO4s=; h=Date:From:To:Subject:From; b=SbZf4IAu2XmnUsZygz4hHnw0tID/4ob/Ej82DZ5CVkKiUQMV4B5LAzx+Zpa2Q0nr6 CNvHLXpETu24xsQJLrfw14qbetEW/G+9p/Fz7rA3P8PejzNHOc5cqsdveHN/gUbdAA JQarfPKKsTM51MIEdzSRgArTaleQLBQjO24zrGw5iKWrICnJNGoujLbI9OQcKGr9Ln ChBleOlYTlb4LYgmgIaj/qid1yeMpsnBzM3Y4FK5SoUE4AXOpX7Dm5znfaJ/xOAygW AFmTJhFStLN08ew35cNYus/2sSYc2e+/2XyDwW01puPIFq+IgGSBfk6BB7ikFsEEO9 qQqPP50QB/vsw== Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Sat, 10 Jul 2021 15:31:51 -0400 From: terramorpha@cock.li To: bug-guix@gnu.org Subject: [PATCH] gnu: Add PuTTY. Message-ID: <1e2aa5364dc3f358a123e915d79c275e@cock.li> X-Sender: terramorpha@cock.li User-Agent: Roundcube Webmail/1.3.15 Received-SPF: pass client-ip=37.120.193.124; envelope-from=terramorpha@cock.li; helo=mail.cock.li X-Spam_score_int: -7 X-Spam_score: -0.8 X-Spam_bar: / X-Spam_report: (-0.8 / 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_VALIDITY_RPBL=1.31, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) 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: -2.4 (--) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 19b58501e9..af3082b954 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -4100,3 +4100,37 @@ on hub/switched networks. It is based on @acronym{ARP} packets, it will send @acronym{ARP} requests and sniff for replies.") (home-page "https://github.com/netdiscover-scanner/netdiscover") (license license:gpl3+))) + +(define-public putty + (package + (name "putty") + (version "0.74.0") + (source (origin + ;; (method url-fetch) + (method url-fetch) + (uri "http://www.putty.be/0.74/putty-0.74.tar.gz") + (sha256 (base32 "0zc43g8ycyf712cdrja4k8ih5s3agw1k0nq0jkifdn8xwn4d7mfx")))) + (arguments + `(#:tests? + #f + #:phases (modify-phases %standard-phases + (add-before 'configure 'go-into-unix/ + (lambda _ (begin + (chdir "unix") + #t)))))) + (build-system gnu-build-system) + (inputs `(("perl" ,perl) + ("python" ,python) + ("python2" ,python-2.7) + ("pkg-config" ,pkg-config) + ("gtk+" ,gtk+))) + (synopsis "A graphical @acronym{SSH} and telnet client") + (description + "Putty is a powerful terminal client. It supports @acronym{SSH}, telnet, +and raw socket connections with good terminal emulation. It supports public +key authentication and Kerberos single-sign-on. It also includes command-line +@acronym{SFTP} and @acronym{SCP} implementations.") + (home-page "https://www.chiark.greenend.org.uk/~sgtatham/putty/") + (license (license:non-copyleft + "https://www.chiark.greenend.org.uk/~sgtatham/putty/licence.html" + "The putty license")))) ------------=_1626375782-25508-1--