From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?Q?G=C3=A1bor_Boskovits?= Subject: Re: [PATCH] gnu: Add tftp-hpa. Date: Sun, 12 Feb 2017 15:05:20 +0100 Message-ID: References: <20170206225825.23935-1-boskovits@gmail.com> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=f403045f84a64cb7b1054855d238 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ccumL-0004bY-7H for guix-devel@gnu.org; Sun, 12 Feb 2017 09:05:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ccumJ-0006tu-KJ for guix-devel@gnu.org; Sun, 12 Feb 2017 09:05:25 -0500 Received: from mail-ua0-x22a.google.com ([2607:f8b0:400c:c08::22a]:35455) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ccumJ-0006tZ-F3 for guix-devel@gnu.org; Sun, 12 Feb 2017 09:05:23 -0500 Received: by mail-ua0-x22a.google.com with SMTP id y9so53214696uae.2 for ; Sun, 12 Feb 2017 06:05:21 -0800 (PST) In-Reply-To: <20170206225825.23935-1-boskovits@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --f403045f84a64cb7b1054855d238 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hello! #1 A post on the list cought my attention regarding security of packages with both server and client. I think that should also apply to this package= . I am waiting for follow ups on that. #2 I have discussed the licensing issues with Thomas Danckaert, but waiting for confirmation wether the licence is correct now. I will try to contact upstream, if they consider relicensing the contribution under isc. #3 I am still waiting for assistance regading the category of this package. My candidtates: networking, ftp (but this is tftp),admin (because isc-dhcp is there) or maybe something like network-infrastucture. I have seen dnsmasq in dns, which also provides tftp, but I don't think this package belongs to dns. 2017-02-06 23:58 GMT+01:00 Boskovits, G=C3=A1bor : > * gnu/packages/tftp-hpa.scm: New file. > --- > gnu/packages/tftp-hpa.scm | 27 +++++++++++++++++++++++++++ > 1 file changed, 27 insertions(+) > create mode 100644 gnu/packages/tftp-hpa.scm > > diff --git a/gnu/packages/tftp-hpa.scm b/gnu/packages/tftp-hpa.scm > new file mode 100644 > index 000000000..44a008698 > --- /dev/null > +++ b/gnu/packages/tftp-hpa.scm > @@ -0,0 +1,27 @@ > +(define-module (gnu packages tftp-hpa) > + #:use-module (guix packages) > + #:use-module (guix download) > + #:use-module (guix build-system gnu) > + #:use-module (guix licenses)) > + > +(define-public tftp-hpa > + (package > + (name "tftp-hpa") > + (version "5.2") > + (source (origin > + (method url-fetch) > + (uri (string-append "https://www.kernel.org/pub/software/" > + "network/tftp/tftp-hpa/tftp-hpa-" > version > + ".tar.xz")) > + (sha256 > + (base32 > + "12vidchglhyc20znq5wdsbhi9mqg90 > jnl7qr9qs8hbvaz4fkdvmg")))) > + (build-system gnu-build-system) > + (arguments `(#:tests? #f)) ; no test target > + (synopsis "HPA's tftp client") > + (description > + "This is a tftp client derived from OpenBSD tftp with some extra > options > +added and bugs fixed. The source includes readline support but it is no= t > +enabled due to license conflicts between the BSD advertising clause and > the GPL.") > + (home-page "http://git.kernel.org/cgit/network/tftp/tftp-hpa.git/ > about/") > + (license (list gpl1 bsd-4)))) > -- > 2.11.0 > > --f403045f84a64cb7b1054855d238 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Hello!

#1 A post on the list cought = my attention regarding security of packages with both server and client. I = think that should also apply to this package.
I am waiting for fol= low ups on that.
#2 I have discussed the licensing issues with Thomas Danckaert, but waiting for= confirmation wether the licence is correct now.
I will try to contact upstream, if= they consider relicensing the contribution under isc.
#3 I am still waiting for as= sistance regading the category of this package. My candidtates: networking,= ftp (but this is tftp),admin (because isc-dhcp is there) or maybe somethin= g like network-infrastucture. I have seen dnsmasq in dns, which also provid= es tftp, but I don't think this package belongs to dns.

2017-02-06 23:5= 8 GMT+01:00 Boskovits, G=C3=A1bor <boskovits@gmail.com>:
* gnu/packages/tftp-hpa.scm: New file.
---
=C2=A0gnu/packages/tftp-hpa.scm | 27 +++++++++++++++++++++++++++
=C2=A01 file changed, 27 insertions(+)
=C2=A0create mode 100644 gnu/packages/tftp-hpa.scm<= br>
diff --git a/gnu/packages/tftp-hpa.scm b/gnu/packages/tftp-hpa.scm
new file mode 100644
index 000000000..44a008698
--- /dev/null
+++ b/gnu/packages/tftp-hpa.scm
@@ -0,0 +1,27 @@
+(define-module (gnu packages tftp-hpa)
+=C2=A0 #:use-module (guix packages)
+=C2=A0 #:use-module (guix download)
+=C2=A0 #:use-module (guix build-system gnu)
+=C2=A0 #:use-module (guix licenses))
+
+(define-public tftp-hpa
+=C2=A0 (package
+=C2=A0 =C2=A0 (name "tftp-hpa")
+=C2=A0 =C2=A0 (version "5.2")
+=C2=A0 =C2=A0 (source (origin
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (method url-fetch)
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (uri (string-append "= ;https://www.kernel.org/pub/software/"
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 "network/tftp/tftp-hpa/t= ftp-hpa-" version
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 ".tar.xz"))
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 (sha256
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(base32
+=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 "12vidch= glhyc20znq5wdsbhi9mqg90jnl7qr9qs8hbvaz4fkdvmg"))))
+=C2=A0 =C2=A0 (build-system gnu-build-system)
+=C2=A0 =C2=A0 (arguments `(#:tests? #f)) ; no test target
+=C2=A0 =C2=A0 (synopsis "HPA's tftp client")
+=C2=A0 =C2=A0 (description
+=C2=A0 =C2=A0 =C2=A0"This is a tftp client derived from OpenBSD tftp = with some extra options
+added and bugs fixed.=C2=A0 The source includes readline support but it is= not
+enabled due to license conflicts between the BSD advertising clause= and the GPL.")
+=C2=A0 =C2=A0 (home-page "http://git.kernel.org/cgit/network/tftp/tftp-hpa.git/abou= t/")
+=C2=A0 =C2=A0 (license (list gpl1 bsd-4))))
--
2.11.0


--f403045f84a64cb7b1054855d238--