mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH 1/2] nettle: update to version 3.3
@ 2016-12-15 13:50 Clemens Gruber
  2016-12-15 13:50 ` [ptxdist] [PATCH 2/2] iputils: update to version s20161105 Clemens Gruber
  2016-12-16 15:00 ` [ptxdist] [PATCH 1/2] nettle: update to version 3.3 Michael Olbrich
  0 siblings, 2 replies; 6+ messages in thread
From: Clemens Gruber @ 2016-12-15 13:50 UTC (permalink / raw)
  To: ptxdist; +Cc: Clemens Gruber

Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
---
 rules/nettle.in   | 1 -
 rules/nettle.make | 5 +++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/rules/nettle.in b/rules/nettle.in
index 9ec8429..fcacb96 100644
--- a/rules/nettle.in
+++ b/rules/nettle.in
@@ -2,7 +2,6 @@
 
 config NETTLE
 	tristate
-	select LIBGMP
 	prompt "nettle"
 	help
 	  Nettle is a cryptographic library.
diff --git a/rules/nettle.make b/rules/nettle.make
index dae19bd..5bc3088 100644
--- a/rules/nettle.make
+++ b/rules/nettle.make
@@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_NETTLE) += nettle
 #
 # Paths and names
 #
-NETTLE_VERSION	:= 2.7.1
-NETTLE_MD5	:= 003d5147911317931dd453520eb234a5
+NETTLE_VERSION	:= 3.3
+NETTLE_MD5	:= 10f969f78a463704ae73529978148dbe
 NETTLE		:= nettle-$(NETTLE_VERSION)
 NETTLE_SUFFIX	:= tar.gz
 NETTLE_URL	:= http://www.lysator.liu.se/~nisse/archive/$(NETTLE).$(NETTLE_SUFFIX)
@@ -39,6 +39,7 @@ NETTLE_CONF_OPT		:= \
 	--enable-static \
 	--enable-public-key \
 	--enable-assembler \
+	--enable-mini-gmp \
 	--disable-openssl \
 	--disable-gcov \
 	--disable-documentation \
-- 
2.10.2


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [ptxdist] [PATCH 2/2] iputils: update to version s20161105
  2016-12-15 13:50 [ptxdist] [PATCH 1/2] nettle: update to version 3.3 Clemens Gruber
@ 2016-12-15 13:50 ` Clemens Gruber
  2016-12-16 14:35   ` Michael Olbrich
  2016-12-16 15:00 ` [ptxdist] [PATCH 1/2] nettle: update to version 3.3 Michael Olbrich
  1 sibling, 1 reply; 6+ messages in thread
From: Clemens Gruber @ 2016-12-15 13:50 UTC (permalink / raw)
  To: ptxdist; +Cc: Clemens Gruber

The current version of iputils ping can handle IPv4 and IPv6 and does
not need the big GnuTLS/libgcrypt/.. dependency.
tracepath can also handle both v4 and v6.

Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
---
 rules/iputils.in   | 41 +++++++++++------------------------------
 rules/iputils.make | 12 +++++-------
 2 files changed, 16 insertions(+), 37 deletions(-)

diff --git a/rules/iputils.in b/rules/iputils.in
index 99105f7..4a842a6 100644
--- a/rules/iputils.in
+++ b/rules/iputils.in
@@ -3,10 +3,9 @@
 menuconfig IPUTILS
 	tristate
 	prompt "iputils                       "
-	select LIBC_RESOLV	if IPUTILS_PING6
-	select LIBCAP		if IPUTILS_ARPING || IPUTILS_PING || IPUTILS_PING6 || IPUTILS_TRACEROUTE6 || IPUTILS_CLOCKDIFF
-	select GNUTLS		if IPUTILS_PING6
-	select GNUTLS_OPENSSL	if IPUTILS_PING6
+	select LIBC_RESOLV	if IPUTILS_PING
+	select LIBCAP		if IPUTILS_ARPING || IPUTILS_PING || IPUTILS_TRACEROUTE6 || IPUTILS_CLOCKDIFF
+	select NETTLE		if IPUTILS_PING
 	help
 	  The iputils package is set of small useful utilities for Linux
 	  networking.
@@ -35,12 +34,12 @@ config IPUTILS_PING
 	bool
 	depends on (!BUSYBOX_PING && !INETUTILS_PING) || ALLYES
 	prompt "ping"
+	depends on GLOBAL_IPV6
 	help
-	  The ping command uses the ICMP protocol's mandatory ECHO_REQUEST datagram
-	  to elicit an ICMP ECHO_RESPONSE from a host or gateway. ECHO_REQUEST
-	  datagrams pings have an IP and ICMP header, followed by a struct
-	  timeval and then an arbitrary number of pad bytes used to fill out
-	  the packet.
+	  ping uses the ICMP protocols mandatory ECHO_REQUEST datagram to elicit
+	  an ICMP ECHO_RESPONSE from a host or gateway.
+	  It works with both IPv4 and IPv6. Using only one of them explicitly can
+	  be enforced by specifying -4 or -6.
 
 comment "inetutils' ping is selected!"
         depends on INETUTILS_PING
@@ -48,22 +47,6 @@ comment "inetutils' ping is selected!"
 comment "BusyBox' ping is selected!"
         depends on BUSYBOX_PING
 
-config IPUTILS_PING6
-	bool
-	depends on (!BUSYBOX_PING6 && !INETUTILS_PING6) || ALLYES
-	prompt "ping6"
-	depends on GLOBAL_IPV6
-	help
-	  The ping6 command is IPv6 version of ping, and can also send Node
-	  Information Queries (RFC4620). Intermediate hops may not be allowed,
-	  because IPv6 source routing was deprecated (RFC5095).
-
-comment "inetutils' ping6 is selected!"
-        depends on INETUTILS_PING6
-
-comment "BusyBox' ping6 is selected!"
-        depends on BUSYBOX_PING6
-
 config IPUTILS_RARPD
 	bool
 	prompt "rarpd"
@@ -97,13 +80,10 @@ comment "BusyBox' tftpd is selected!"
 config IPUTILS_TRACEPATH
 	bool
 	prompt "tracepath"
-	help
-
-config IPUTILS_TRACEPATH6
-	bool
-	prompt "tracepath6"
 	depends on GLOBAL_IPV6
 	help
+	  tracepath traces the path to a network host discovering the MTU along
+	  this path.
 
 config IPUTILS_TRACEROUTE6
 	bool
@@ -111,6 +91,7 @@ config IPUTILS_TRACEROUTE6
 	prompt "traceroute6"
 	depends on GLOBAL_IPV6
 	help
+	  traceroute6 prints the route packets trace to network hosts.
 
 comment "BusyBox' traceroute6 is selected!"
         depends on BUSYBOX_TRACEROUTE6
diff --git a/rules/iputils.make b/rules/iputils.make
index dc93d5c..f07e325 100644
--- a/rules/iputils.make
+++ b/rules/iputils.make
@@ -16,11 +16,11 @@ PACKAGES-$(PTXCONF_IPUTILS) += iputils
 #
 # Paths and names
 #
-IPUTILS_VERSION	:= s20121221
-IPUTILS_MD5	:= 6072aef64205720dd1893b375e184171
+IPUTILS_VERSION	:= s20161105
+IPUTILS_MD5	:= 06f0be2dabe10dc80fdb328073230e69
 IPUTILS		:= iputils-$(IPUTILS_VERSION)
-IPUTILS_SUFFIX	:= tar.bz2
-IPUTILS_URL	:= http://www.skbuff.net/iputils/$(IPUTILS).$(IPUTILS_SUFFIX)
+IPUTILS_SUFFIX	:= tar.gz
+IPUTILS_URL	:= http://codeload.github.com/iputils/iputils/$(IPUTILS_SUFFIX)/$(IPUTILS_VERSION)
 IPUTILS_SOURCE	:= $(SRCDIR)/$(IPUTILS).$(IPUTILS_SUFFIX)
 IPUTILS_DIR	:= $(BUILDDIR)/$(IPUTILS)
 IPUTILS_LICENSE	:= GPL-2.0
@@ -34,16 +34,14 @@ IPUTILS_TOOLS-y					:=
 IPUTILS_TOOLS-$(PTXCONF_IPUTILS_ARPING)		+= arping
 IPUTILS_TOOLS-$(PTXCONF_IPUTILS_CLOCKDIFF)	+= clockdiff
 IPUTILS_TOOLS-$(PTXCONF_IPUTILS_PING)		+= ping
-IPUTILS_TOOLS-$(PTXCONF_IPUTILS_PING6)		+= ping6
 IPUTILS_TOOLS-$(PTXCONF_IPUTILS_RARPD)		+= rarpd
 IPUTILS_TOOLS-$(PTXCONF_IPUTILS_RDISC)		+= rdisc
 IPUTILS_TOOLS-$(PTXCONF_IPUTILS_TFTPD)		+= tftpd
 IPUTILS_TOOLS-$(PTXCONF_IPUTILS_TRACEPATH)	+= tracepath
-IPUTILS_TOOLS-$(PTXCONF_IPUTILS_TRACEPATH6)	+= tracepath6
 IPUTILS_TOOLS-$(PTXCONF_IPUTILS_TRACEROUTE6)	+= traceroute6
 
 IPUTILS_CONF_TOOL	:= NO
-IPUTILS_MAKEVARS	:= $(CROSS_ENV) TARGETS="$(IPUTILS_TOOLS-y)"
+IPUTILS_MAKEVARS	:= $(CROSS_ENV) USE_IDN=no TARGETS="$(IPUTILS_TOOLS-y)"
 
 # ----------------------------------------------------------------------------
 # Install
-- 
2.10.2


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ptxdist] [PATCH 2/2] iputils: update to version s20161105
  2016-12-15 13:50 ` [ptxdist] [PATCH 2/2] iputils: update to version s20161105 Clemens Gruber
@ 2016-12-16 14:35   ` Michael Olbrich
  2016-12-16 14:43     ` Clemens Gruber
  0 siblings, 1 reply; 6+ messages in thread
From: Michael Olbrich @ 2016-12-16 14:35 UTC (permalink / raw)
  To: ptxdist

On Thu, Dec 15, 2016 at 02:50:38PM +0100, Clemens Gruber wrote:
> The current version of iputils ping can handle IPv4 and IPv6 and does
> not need the big GnuTLS/libgcrypt/.. dependency.
> tracepath can also handle both v4 and v6.
> 
> Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
> ---
>  rules/iputils.in   | 41 +++++++++++------------------------------
>  rules/iputils.make | 12 +++++-------
>  2 files changed, 16 insertions(+), 37 deletions(-)
> 
> diff --git a/rules/iputils.in b/rules/iputils.in
> index 99105f7..4a842a6 100644
> --- a/rules/iputils.in
> +++ b/rules/iputils.in
> @@ -3,10 +3,9 @@
>  menuconfig IPUTILS
>  	tristate
>  	prompt "iputils                       "
> -	select LIBC_RESOLV	if IPUTILS_PING6
> -	select LIBCAP		if IPUTILS_ARPING || IPUTILS_PING || IPUTILS_PING6 || IPUTILS_TRACEROUTE6 || IPUTILS_CLOCKDIFF
> -	select GNUTLS		if IPUTILS_PING6
> -	select GNUTLS_OPENSSL	if IPUTILS_PING6
> +	select LIBC_RESOLV	if IPUTILS_PING
> +	select LIBCAP		if IPUTILS_ARPING || IPUTILS_PING || IPUTILS_TRACEROUTE6 || IPUTILS_CLOCKDIFF
> +	select NETTLE		if IPUTILS_PING
>  	help
>  	  The iputils package is set of small useful utilities for Linux
>  	  networking.
> @@ -35,12 +34,12 @@ config IPUTILS_PING
>  	bool
>  	depends on (!BUSYBOX_PING && !INETUTILS_PING) || ALLYES
>  	prompt "ping"
> +	depends on GLOBAL_IPV6
>  	help
> -	  The ping command uses the ICMP protocol's mandatory ECHO_REQUEST datagram
> -	  to elicit an ICMP ECHO_RESPONSE from a host or gateway. ECHO_REQUEST
> -	  datagrams pings have an IP and ICMP header, followed by a struct
> -	  timeval and then an arbitrary number of pad bytes used to fill out
> -	  the packet.
> +	  ping uses the ICMP protocols mandatory ECHO_REQUEST datagram to elicit
> +	  an ICMP ECHO_RESPONSE from a host or gateway.
> +	  It works with both IPv4 and IPv6. Using only one of them explicitly can
> +	  be enforced by specifying -4 or -6.
>  
>  comment "inetutils' ping is selected!"
>          depends on INETUTILS_PING
> @@ -48,22 +47,6 @@ comment "inetutils' ping is selected!"
>  comment "BusyBox' ping is selected!"
>          depends on BUSYBOX_PING
>  
> -config IPUTILS_PING6
> -	bool
> -	depends on (!BUSYBOX_PING6 && !INETUTILS_PING6) || ALLYES
> -	prompt "ping6"
> -	depends on GLOBAL_IPV6
> -	help
> -	  The ping6 command is IPv6 version of ping, and can also send Node
> -	  Information Queries (RFC4620). Intermediate hops may not be allowed,
> -	  because IPv6 source routing was deprecated (RFC5095).
> -
> -comment "inetutils' ping6 is selected!"
> -        depends on INETUTILS_PING6
> -
> -comment "BusyBox' ping6 is selected!"
> -        depends on BUSYBOX_PING6
> -
>  config IPUTILS_RARPD
>  	bool
>  	prompt "rarpd"
> @@ -97,13 +80,10 @@ comment "BusyBox' tftpd is selected!"
>  config IPUTILS_TRACEPATH
>  	bool
>  	prompt "tracepath"
> -	help
> -
> -config IPUTILS_TRACEPATH6
> -	bool
> -	prompt "tracepath6"
>  	depends on GLOBAL_IPV6
>  	help
> +	  tracepath traces the path to a network host discovering the MTU along
> +	  this path.
>  
>  config IPUTILS_TRACEROUTE6
>  	bool
> @@ -111,6 +91,7 @@ config IPUTILS_TRACEROUTE6
>  	prompt "traceroute6"
>  	depends on GLOBAL_IPV6
>  	help
> +	  traceroute6 prints the route packets trace to network hosts.
>  
>  comment "BusyBox' traceroute6 is selected!"
>          depends on BUSYBOX_TRACEROUTE6
> diff --git a/rules/iputils.make b/rules/iputils.make
> index dc93d5c..f07e325 100644
> --- a/rules/iputils.make
> +++ b/rules/iputils.make
> @@ -16,11 +16,11 @@ PACKAGES-$(PTXCONF_IPUTILS) += iputils
>  #
>  # Paths and names
>  #
> -IPUTILS_VERSION	:= s20121221
> -IPUTILS_MD5	:= 6072aef64205720dd1893b375e184171
> +IPUTILS_VERSION	:= s20161105
> +IPUTILS_MD5	:= 06f0be2dabe10dc80fdb328073230e69
>  IPUTILS		:= iputils-$(IPUTILS_VERSION)
> -IPUTILS_SUFFIX	:= tar.bz2
> -IPUTILS_URL	:= http://www.skbuff.net/iputils/$(IPUTILS).$(IPUTILS_SUFFIX)
> +IPUTILS_SUFFIX	:= tar.gz
> +IPUTILS_URL	:= http://codeload.github.com/iputils/iputils/$(IPUTILS_SUFFIX)/$(IPUTILS_VERSION)

This URL is broken.

Michael

>  IPUTILS_SOURCE	:= $(SRCDIR)/$(IPUTILS).$(IPUTILS_SUFFIX)
>  IPUTILS_DIR	:= $(BUILDDIR)/$(IPUTILS)
>  IPUTILS_LICENSE	:= GPL-2.0
> @@ -34,16 +34,14 @@ IPUTILS_TOOLS-y					:=
>  IPUTILS_TOOLS-$(PTXCONF_IPUTILS_ARPING)		+= arping
>  IPUTILS_TOOLS-$(PTXCONF_IPUTILS_CLOCKDIFF)	+= clockdiff
>  IPUTILS_TOOLS-$(PTXCONF_IPUTILS_PING)		+= ping
> -IPUTILS_TOOLS-$(PTXCONF_IPUTILS_PING6)		+= ping6
>  IPUTILS_TOOLS-$(PTXCONF_IPUTILS_RARPD)		+= rarpd
>  IPUTILS_TOOLS-$(PTXCONF_IPUTILS_RDISC)		+= rdisc
>  IPUTILS_TOOLS-$(PTXCONF_IPUTILS_TFTPD)		+= tftpd
>  IPUTILS_TOOLS-$(PTXCONF_IPUTILS_TRACEPATH)	+= tracepath
> -IPUTILS_TOOLS-$(PTXCONF_IPUTILS_TRACEPATH6)	+= tracepath6
>  IPUTILS_TOOLS-$(PTXCONF_IPUTILS_TRACEROUTE6)	+= traceroute6
>  
>  IPUTILS_CONF_TOOL	:= NO
> -IPUTILS_MAKEVARS	:= $(CROSS_ENV) TARGETS="$(IPUTILS_TOOLS-y)"
> +IPUTILS_MAKEVARS	:= $(CROSS_ENV) USE_IDN=no TARGETS="$(IPUTILS_TOOLS-y)"
>  
>  # ----------------------------------------------------------------------------
>  # Install
> -- 
> 2.10.2
> 
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ptxdist] [PATCH 2/2] iputils: update to version s20161105
  2016-12-16 14:35   ` Michael Olbrich
@ 2016-12-16 14:43     ` Clemens Gruber
  2016-12-16 14:50       ` Michael Olbrich
  0 siblings, 1 reply; 6+ messages in thread
From: Clemens Gruber @ 2016-12-16 14:43 UTC (permalink / raw)
  To: ptxdist

On Fri, Dec 16, 2016 at 03:35:30PM +0100, Michael Olbrich wrote:
> On Thu, Dec 15, 2016 at 02:50:38PM +0100, Clemens Gruber wrote:
> >  IPUTILS		:= iputils-$(IPUTILS_VERSION)
> > -IPUTILS_SUFFIX	:= tar.bz2
> > -IPUTILS_URL	:= http://www.skbuff.net/iputils/$(IPUTILS).$(IPUTILS_SUFFIX)
> > +IPUTILS_SUFFIX	:= tar.gz
> > +IPUTILS_URL	:= http://codeload.github.com/iputils/iputils/$(IPUTILS_SUFFIX)/$(IPUTILS_VERSION)
> 
> This URL is broken.

Hi,

do you mean, because there is no suffix at the end or because the
download fails?
I just redownloaded it from that URL via ptxdist get. (works!)

But I can replace it with the
https://github.com/iputils/iputils/archive/s20161105.tar.gz
instead of the codeload.github.com URL if that is preferred.

If so, I should probably also replace the URL in libfastjson.make?

Thanks,
Clemens

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ptxdist] [PATCH 2/2] iputils: update to version s20161105
  2016-12-16 14:43     ` Clemens Gruber
@ 2016-12-16 14:50       ` Michael Olbrich
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2016-12-16 14:50 UTC (permalink / raw)
  To: ptxdist

On Fri, Dec 16, 2016 at 03:43:16PM +0100, Clemens Gruber wrote:
> On Fri, Dec 16, 2016 at 03:35:30PM +0100, Michael Olbrich wrote:
> > On Thu, Dec 15, 2016 at 02:50:38PM +0100, Clemens Gruber wrote:
> > >  IPUTILS		:= iputils-$(IPUTILS_VERSION)
> > > -IPUTILS_SUFFIX	:= tar.bz2
> > > -IPUTILS_URL	:= http://www.skbuff.net/iputils/$(IPUTILS).$(IPUTILS_SUFFIX)
> > > +IPUTILS_SUFFIX	:= tar.gz
> > > +IPUTILS_URL	:= http://codeload.github.com/iputils/iputils/$(IPUTILS_SUFFIX)/$(IPUTILS_VERSION)
> > 
> > This URL is broken.
> 
> Hi,
> 
> do you mean, because there is no suffix at the end or because the
> download fails?
> I just redownloaded it from that URL via ptxdist get. (works!)
> 
> But I can replace it with the
> https://github.com/iputils/iputils/archive/s20161105.tar.gz
> instead of the codeload.github.com URL if that is preferred.

Hmm, strange, I got timeouts before, but now it works.
So no need to change anything.

> If so, I should probably also replace the URL in libfastjson.make?


Michael

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ptxdist] [PATCH 1/2] nettle: update to version 3.3
  2016-12-15 13:50 [ptxdist] [PATCH 1/2] nettle: update to version 3.3 Clemens Gruber
  2016-12-15 13:50 ` [ptxdist] [PATCH 2/2] iputils: update to version s20161105 Clemens Gruber
@ 2016-12-16 15:00 ` Michael Olbrich
  1 sibling, 0 replies; 6+ messages in thread
From: Michael Olbrich @ 2016-12-16 15:00 UTC (permalink / raw)
  To: ptxdist

On Thu, Dec 15, 2016 at 02:50:37PM +0100, Clemens Gruber wrote:
> Signed-off-by: Clemens Gruber <clemens.gruber@pqgruber.com>
> ---
>  rules/nettle.in   | 1 -
>  rules/nettle.make | 5 +++--
>  2 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/rules/nettle.in b/rules/nettle.in
> index 9ec8429..fcacb96 100644
> --- a/rules/nettle.in
> +++ b/rules/nettle.in
> @@ -2,7 +2,6 @@
>  
>  config NETTLE
>  	tristate
> -	select LIBGMP
>  	prompt "nettle"
>  	help
>  	  Nettle is a cryptographic library.
> diff --git a/rules/nettle.make b/rules/nettle.make
> index dae19bd..5bc3088 100644
> --- a/rules/nettle.make
> +++ b/rules/nettle.make
> @@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_NETTLE) += nettle
>  #
>  # Paths and names
>  #
> -NETTLE_VERSION	:= 2.7.1
> -NETTLE_MD5	:= 003d5147911317931dd453520eb234a5
> +NETTLE_VERSION	:= 3.3
> +NETTLE_MD5	:= 10f969f78a463704ae73529978148dbe
>  NETTLE		:= nettle-$(NETTLE_VERSION)
>  NETTLE_SUFFIX	:= tar.gz
>  NETTLE_URL	:= http://www.lysator.liu.se/~nisse/archive/$(NETTLE).$(NETTLE_SUFFIX)
> @@ -39,6 +39,7 @@ NETTLE_CONF_OPT		:= \
>  	--enable-static \
>  	--enable-public-key \
>  	--enable-assembler \
> +	--enable-mini-gmp \

Please keep this in the order of the --help output.

And add the fat/aes options (disabled for now).

Michael

>  	--disable-openssl \
>  	--disable-gcov \
>  	--disable-documentation \
> -- 
> 2.10.2
> 
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2016-12-16 15:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-15 13:50 [ptxdist] [PATCH 1/2] nettle: update to version 3.3 Clemens Gruber
2016-12-15 13:50 ` [ptxdist] [PATCH 2/2] iputils: update to version s20161105 Clemens Gruber
2016-12-16 14:35   ` Michael Olbrich
2016-12-16 14:43     ` Clemens Gruber
2016-12-16 14:50       ` Michael Olbrich
2016-12-16 15:00 ` [ptxdist] [PATCH 1/2] nettle: update to version 3.3 Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox