Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3
@ 2014-03-10 20:26 Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 02/14] fping: bump to version 3.9 Gustavo Zacarias
                   ` (13 more replies)
  0 siblings, 14 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

TPACKET_V3 support issues fixed in 1.5.2/1.5.3 so the patch is no longer
necessary.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 ...0002-fix-TPACKET_V3-initialization-GH-329.patch | 34 ----------------------
 package/libpcap/libpcap.mk                         |  2 +-
 2 files changed, 1 insertion(+), 35 deletions(-)
 delete mode 100644 package/libpcap/libpcap-0002-fix-TPACKET_V3-initialization-GH-329.patch

diff --git a/package/libpcap/libpcap-0002-fix-TPACKET_V3-initialization-GH-329.patch b/package/libpcap/libpcap-0002-fix-TPACKET_V3-initialization-GH-329.patch
deleted file mode 100644
index 9d16098..0000000
--- a/package/libpcap/libpcap-0002-fix-TPACKET_V3-initialization-GH-329.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From cd84bc9743d7595dee1ea4bc40bd236a619d6539 Mon Sep 17 00:00:00 2001
-From: Gabor Tatarka <gabor.tatarka@ericsson.com>
-Date: Mon, 2 Dec 2013 22:05:57 +0400
-Subject: [PATCH] fix TPACKET_V3 initialization (GH #329)
-
-libpcap would fail to initialize on Linux when compiled against kernel
-headers with TPACKET_V3 support but running on kernel without:
-
-"can't get TPACKET_V3 header len on packet socket: Invalid argument"
-
-Fix init_tpacket() to respect EINVAL because that is what the kernel
-returns for unsupported TPACKET versions.
-
-Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
----
- pcap-linux.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/pcap-linux.c b/pcap-linux.c
-index 6c0723a..8800c96 100644
---- a/pcap-linux.c
-+++ b/pcap-linux.c
-@@ -3471,7 +3471,7 @@ init_tpacket(pcap_t *handle, int version, const char *version_str)
- 
- 	/* Probe whether kernel supports the specified TPACKET version */
- 	if (getsockopt(handle->fd, SOL_PACKET, PACKET_HDRLEN, &val, &len) < 0) {
--		if (errno == ENOPROTOOPT)
-+		if (errno == ENOPROTOOPT || errno == EINVAL)
- 			return 1;	/* no */
- 
- 		/* Failed to even find out; this is a fatal error. */
--- 
-1.8.5.1
-
diff --git a/package/libpcap/libpcap.mk b/package/libpcap/libpcap.mk
index aba2510..3681d4c 100644
--- a/package/libpcap/libpcap.mk
+++ b/package/libpcap/libpcap.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-LIBPCAP_VERSION = 1.5.1
+LIBPCAP_VERSION = 1.5.3
 LIBPCAP_SITE = http://www.tcpdump.org/release
 LIBPCAP_LICENSE = BSD-3c
 LIBPCAP_LICENSE_FILES = LICENSE
-- 
1.8.3.2

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

* [Buildroot] [PATCH 02/14] fping: bump to version 3.9
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 03/14] nmap: bump to version 6.40 Gustavo Zacarias
                   ` (12 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/fping/fping.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/fping/fping.mk b/package/fping/fping.mk
index 580920e..a87f85d 100644
--- a/package/fping/fping.mk
+++ b/package/fping/fping.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-FPING_VERSION = 3.8
+FPING_VERSION = 3.9
 FPING_SITE = http://fping.org/dist
 FPING_LICENSE = BSD-like
 FPING_LICENSE_FILES = COPYING
-- 
1.8.3.2

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

* [Buildroot] [PATCH 03/14] nmap: bump to version 6.40
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 02/14] fping: bump to version 3.9 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-12-13 15:40   ` Yann E. MORIN
  2014-03-10 20:26 ` [Buildroot] [PATCH 04/14] iftop: bump to version 1.0pre4 Gustavo Zacarias
                   ` (11 subsequent siblings)
  13 siblings, 1 reply; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/nmap/nmap.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/nmap/nmap.mk b/package/nmap/nmap.mk
index 47e4cfc..4ed39bf 100644
--- a/package/nmap/nmap.mk
+++ b/package/nmap/nmap.mk
@@ -4,13 +4,13 @@
 #
 ################################################################################
 
-NMAP_VERSION = 6.01
+NMAP_VERSION = 6.40
 NMAP_SITE = http://nmap.org/dist
 NMAP_SOURCE = nmap-$(NMAP_VERSION).tar.bz2
 NMAP_DEPENDENCIES = libpcap pcre
 NMAP_CONF_OPT = --without-liblua --without-zenmap \
 	--with-libdnet=included --with-liblinear=included \
-	--with-libpcre="$(STAGING_DIR)/usr"
+	--with-libpcre="$(STAGING_DIR)/usr" --without-ncat
 NMAP_LICENSE = GPLv2
 NMAP_LICENSE_FILES = COPYING
 
-- 
1.8.3.2

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

* [Buildroot] [PATCH 04/14] iftop: bump to version 1.0pre4
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 02/14] fping: bump to version 3.9 Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 03/14] nmap: bump to version 6.40 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 05/14] ipsec-tools: fix static linking Gustavo Zacarias
                   ` (10 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/iftop/iftop.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/iftop/iftop.mk b/package/iftop/iftop.mk
index 29ec61a..91bd6cc 100644
--- a/package/iftop/iftop.mk
+++ b/package/iftop/iftop.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-IFTOP_VERSION = 1.0pre3
+IFTOP_VERSION = 1.0pre4
 IFTOP_SITE = http://www.ex-parrot.com/pdw/iftop/download/
 IFTOP_DEPENDENCIES = ncurses libpcap
 IFTOP_LICENSE = GPLv2+
-- 
1.8.3.2

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

* [Buildroot] [PATCH 05/14] ipsec-tools: fix static linking
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (2 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 04/14] iftop: bump to version 1.0pre4 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 06/14] ipsec-tools: bump to version 0.8.2 Gustavo Zacarias
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

As with other packages that use openssl and don't use pkg-config to
pick up the deps it fails to build for static scenarios.
So fix it by adding the zlib link option to LIBS.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/ipsec-tools/ipsec-tools.mk | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/package/ipsec-tools/ipsec-tools.mk b/package/ipsec-tools/ipsec-tools.mk
index d5521ac..44c3380 100644
--- a/package/ipsec-tools/ipsec-tools.mk
+++ b/package/ipsec-tools/ipsec-tools.mk
@@ -15,6 +15,11 @@ IPSEC_TOOLS_DEPENDENCIES = openssl flex host-flex
 # configure hardcodes -Werror, so override CFLAGS on make invocation
 IPSEC_TOOLS_MAKE_OPT = CFLAGS='$(TARGET_CFLAGS)'
 
+# openssl uses zlib, so we need to explicitly link with it when static
+ifeq ($(BR2_PREFER_STATIC_LIB),y)
+IPSEC_TOOLS_CONF_ENV += LIBS=-lz
+endif
+
 IPSEC_TOOLS_CONF_OPT = \
 	  --disable-hybrid \
 	  --without-libpam \
-- 
1.8.3.2

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

* [Buildroot] [PATCH 06/14] ipsec-tools: bump to version 0.8.2
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (3 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 05/14] ipsec-tools: fix static linking Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 07/14] msmtp: bump to version 1.4.32 Gustavo Zacarias
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Also rename patch according to policy and add homepage.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/ipsec-tools/Config.in                                           | 2 ++
 ...psec-tools-susv3-legacy.patch => ipsec-tools-001-susv3-legacy.patch} | 0
 package/ipsec-tools/ipsec-tools.mk                                      | 2 +-
 3 files changed, 3 insertions(+), 1 deletion(-)
 rename package/ipsec-tools/{ipsec-tools-susv3-legacy.patch => ipsec-tools-001-susv3-legacy.patch} (100%)

diff --git a/package/ipsec-tools/Config.in b/package/ipsec-tools/Config.in
index 06a5a56..57fa5d4 100644
--- a/package/ipsec-tools/Config.in
+++ b/package/ipsec-tools/Config.in
@@ -5,6 +5,8 @@ config BR2_PACKAGE_IPSEC_TOOLS
 	help
 	  This package is required to support IPSec for Linux 2.6+
 
+	  http://ipsec-tools.sourceforge.net/
+
 if BR2_PACKAGE_IPSEC_TOOLS
 
 config BR2_PACKAGE_IPSEC_TOOLS_ADMINPORT
diff --git a/package/ipsec-tools/ipsec-tools-susv3-legacy.patch b/package/ipsec-tools/ipsec-tools-001-susv3-legacy.patch
similarity index 100%
rename from package/ipsec-tools/ipsec-tools-susv3-legacy.patch
rename to package/ipsec-tools/ipsec-tools-001-susv3-legacy.patch
diff --git a/package/ipsec-tools/ipsec-tools.mk b/package/ipsec-tools/ipsec-tools.mk
index 44c3380..870588d 100644
--- a/package/ipsec-tools/ipsec-tools.mk
+++ b/package/ipsec-tools/ipsec-tools.mk
@@ -5,7 +5,7 @@
 ################################################################################
 
 IPSEC_TOOLS_VERSION_MAJOR = 0.8
-IPSEC_TOOLS_VERSION = $(IPSEC_TOOLS_VERSION_MAJOR).0
+IPSEC_TOOLS_VERSION = $(IPSEC_TOOLS_VERSION_MAJOR).2
 IPSEC_TOOLS_SOURCE = ipsec-tools-$(IPSEC_TOOLS_VERSION).tar.bz2
 IPSEC_TOOLS_SITE = http://ftp.sunet.se/pub/NetBSD/misc/ipsec-tools/$(IPSEC_TOOLS_VERSION_MAJOR)/
 IPSEC_TOOLS_INSTALL_STAGING = YES
-- 
1.8.3.2

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

* [Buildroot] [PATCH 07/14] msmtp: bump to version 1.4.32
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (4 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 06/14] ipsec-tools: bump to version 0.8.2 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 08/14] netatalk: bump to version 3.0.8 Gustavo Zacarias
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/msmtp/msmtp.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/msmtp/msmtp.mk b/package/msmtp/msmtp.mk
index 95687bc..cdf68f4 100644
--- a/package/msmtp/msmtp.mk
+++ b/package/msmtp/msmtp.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-MSMTP_VERSION = 1.4.31
+MSMTP_VERSION = 1.4.32
 MSMTP_SITE = http://downloads.sourceforge.net/project/msmtp/msmtp/$(MSMTP_VERSION)
 MSMTP_SOURCE = msmtp-$(MSMTP_VERSION).tar.bz2
 MSMTP_LICENSE = GPLv3+
-- 
1.8.3.2

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

* [Buildroot] [PATCH 08/14] netatalk: bump to version 3.0.8
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (5 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 07/14] msmtp: bump to version 1.4.32 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 09/14] httping: bump to version 2.3.4 Gustavo Zacarias
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/netatalk/netatalk.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/netatalk/netatalk.mk b/package/netatalk/netatalk.mk
index 2bd63ec..e5e5c6b 100644
--- a/package/netatalk/netatalk.mk
+++ b/package/netatalk/netatalk.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-NETATALK_VERSION = 3.0.5
+NETATALK_VERSION = 3.0.8
 NETATALK_SITE = http://downloads.sourceforge.net/project/netatalk/netatalk/$(NETATALK_VERSION)
 NETATALK_SOURCE = netatalk-$(NETATALK_VERSION).tar.bz2
 NETATALK_AUTORECONF = YES
-- 
1.8.3.2

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

* [Buildroot] [PATCH 09/14] httping: bump to version 2.3.4
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (6 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 08/14] netatalk: bump to version 3.0.8 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 10/14] radvd: bump to version 1.9.9 Gustavo Zacarias
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/httping/Config.in  | 5 +++++
 package/httping/httping.mk | 7 +++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/package/httping/Config.in b/package/httping/Config.in
index 92c7a20..cd97e72 100644
--- a/package/httping/Config.in
+++ b/package/httping/Config.in
@@ -1,5 +1,10 @@
+comment "httping needs a toolchain w/ char"
+	depends on !BR2_USE_WCHAR
+
 config BR2_PACKAGE_HTTPING
 	bool "httping"
+	depends on BR2_USE_WCHAR
+	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT
 	help
 	  Httping is like 'ping' but for http-requests.
 	  Give it an url, and it'll show you how long it takes to connect,
diff --git a/package/httping/httping.mk b/package/httping/httping.mk
index 8385aaf..dd8abb3 100644
--- a/package/httping/httping.mk
+++ b/package/httping/httping.mk
@@ -4,12 +4,14 @@
 #
 ################################################################################
 
-HTTPING_VERSION = 2.2.1
+HTTPING_VERSION = 2.3.4
 HTTPING_SOURCE = httping-$(HTTPING_VERSION).tgz
 HTTPING_SITE = http://www.vanheusden.com/httping
 HTTPING_LICENSE = GPLv2
 HTTPING_LICENSE_FILES = license.txt
+HTTPING_LDFLAGS = $(if $(BR2_NEEDS_GETTEXT),-lintl) $(TARGET_LDFLAGS)
 HTTPING_DEPENDENCIES = \
+	$(if $(BR2_NEEDS_GETTEXT),gettext) \
 	$(if $(BR2_PACKAGE_OPENSSL),openssl) \
 	$(if $(BR2_PACKAGE_NCURSES),ncurses) \
 	$(if $(BR2_PACKAGE_FFTW),fftw)
@@ -20,7 +22,8 @@ HTTPING_MAKE_OPT = $(TARGET_CONFIGURE_OPTS) \
 	TFO=$(if $(BR2_PACKAGE_HTTPING_TFO),yes,no)
 
 define HTTPING_BUILD_CMDS
-	$(HTTPING_MAKE_OPT) $(MAKE) OFLAGS= DEBUG=no -C $(@D)
+	$(HTTPING_MAKE_OPT) LDFLAGS="$(HTTPING_LDFLAGS)" \
+		$(MAKE) DEBUG=no -C $(@D)
 endef
 
 define HTTPING_INSTALL_TARGET_CMDS
-- 
1.8.3.2

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

* [Buildroot] [PATCH 10/14] radvd: bump to version 1.9.9
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (7 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 09/14] httping: bump to version 2.3.4 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 11/14] macchanger: bump to version 1.6.0 Gustavo Zacarias
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/radvd/radvd.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/radvd/radvd.mk b/package/radvd/radvd.mk
index 9057a08..bc782fd 100644
--- a/package/radvd/radvd.mk
+++ b/package/radvd/radvd.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-RADVD_VERSION = 1.9.8
+RADVD_VERSION = 1.9.9
 RADVD_SOURCE = radvd-$(RADVD_VERSION).tar.xz
 RADVD_SITE = http://www.litech.org/radvd/dist
 RADVD_DEPENDENCIES = host-bison flex libdaemon host-flex host-pkgconf
-- 
1.8.3.2

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

* [Buildroot] [PATCH 11/14] macchanger: bump to version 1.6.0
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (8 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 10/14] radvd: bump to version 1.9.9 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 12/14] ptpd2: bump to version 2.3.0 Gustavo Zacarias
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Also switch the homepage, it's not a proper one but at least it's no
longer a 404.
The license is now GPLv2+ but there's no COPYING file.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/macchanger/Config.in     | 2 +-
 package/macchanger/macchanger.mk | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/package/macchanger/Config.in b/package/macchanger/Config.in
index e26faa7..a9ebc8e 100644
--- a/package/macchanger/Config.in
+++ b/package/macchanger/Config.in
@@ -4,4 +4,4 @@ config BR2_PACKAGE_MACCHANGER
 	  A GNU/Linux utility for viewing/manipulating the MAC address of
 	  network interfaces
 
-	  http://www.alobbs.com/macchanger
+	  http://www.gnu.org/software/macchanger
diff --git a/package/macchanger/macchanger.mk b/package/macchanger/macchanger.mk
index 8656183..5ded0b8 100644
--- a/package/macchanger/macchanger.mk
+++ b/package/macchanger/macchanger.mk
@@ -4,9 +4,8 @@
 #
 ################################################################################
 
-MACCHANGER_VERSION = 1.5.0
+MACCHANGER_VERSION = 1.6.0
 MACCHANGER_SITE = $(BR2_GNU_MIRROR)/macchanger
-MACCHANGER_LICENSE = GPLv2
-MACCHANGER_LICENSE_FILES = COPYING
+MACCHANGER_LICENSE = GPLv2+
 
 $(eval $(autotools-package))
-- 
1.8.3.2

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

* [Buildroot] [PATCH 12/14] ptpd2: bump to version 2.3.0
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (9 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 11/14] macchanger: bump to version 1.6.0 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 13/14] xl2tp: bump to version 1.3.6 Gustavo Zacarias
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Now a proper autotools package, almost... (configure not shipped)

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/ptpd2/ptpd2.mk | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/package/ptpd2/ptpd2.mk b/package/ptpd2/ptpd2.mk
index 0428c80..cd898d8 100644
--- a/package/ptpd2/ptpd2.mk
+++ b/package/ptpd2/ptpd2.mk
@@ -4,23 +4,17 @@
 #
 ################################################################################
 
-PTPD2_VERSION = 2.2.2
+PTPD2_VERSION = 2.3.0
 PTPD2_SITE = http://downloads.sourceforge.net/project/ptpd/ptpd/$(PTPD2_VERSION)
 PTPD2_SOURCE = ptpd-$(PTPD2_VERSION).tar.gz
+# configure not shipped
+PTPD2_AUTORECONF = YES
 PTPD2_LICENSE = BSD-2c
 PTPD2_LICENSE_FILES = COPYRIGHT
 
-define PTPD2_BUILD_CMDS
-	$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)/src
-endef
-
-define PTPD2_INSTALL_TARGET_CMDS
-	$(INSTALL) -m 755 -D $(@D)/src/ptpd2 $(TARGET_DIR)/usr/sbin/ptpd2
-endef
-
 define PTPD2_INSTALL_INIT_SYSV
 	$(INSTALL) -m 755 -D package/ptpd2/S65ptpd2 \
 		$(TARGET_DIR)/etc/init.d/S65ptpd2
 endef
 
-$(eval $(generic-package))
+$(eval $(autotools-package))
-- 
1.8.3.2

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

* [Buildroot] [PATCH 13/14] xl2tp: bump to version 1.3.6
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (10 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 12/14] ptpd2: bump to version 2.3.0 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-10 20:26 ` [Buildroot] [PATCH 14/14] tcpreplay: bump to version 4.0.3 Gustavo Zacarias
  2014-03-11 22:05 ` [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Peter Korsgaard
  13 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/xl2tp/xl2tp.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/xl2tp/xl2tp.mk b/package/xl2tp/xl2tp.mk
index b61dac9..0b2f7f1 100644
--- a/package/xl2tp/xl2tp.mk
+++ b/package/xl2tp/xl2tp.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-XL2TP_VERSION = v1.3.2
+XL2TP_VERSION = v1.3.6
 XL2TP_SITE = $(call github,xelerance,xl2tpd,$(XL2TP_VERSION))
 XL2TP_DEPENDENCIES = libpcap openssl
 XL2TP_LICENSE = GPLv2
-- 
1.8.3.2

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

* [Buildroot] [PATCH 14/14] tcpreplay: bump to version 4.0.3
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (11 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 13/14] xl2tp: bump to version 1.3.6 Gustavo Zacarias
@ 2014-03-10 20:26 ` Gustavo Zacarias
  2014-03-11  3:48   ` Chris Packham
  2014-03-11 22:05 ` [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Peter Korsgaard
  13 siblings, 1 reply; 18+ messages in thread
From: Gustavo Zacarias @ 2014-03-10 20:26 UTC (permalink / raw)
  To: buildroot

Patch removed, already upstream.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 ...ild-errors-when-ENABLE_VERBOSE-is-not-set.patch | 54 ----------------------
 package/tcpreplay/tcpreplay.mk                     |  2 +-
 2 files changed, 1 insertion(+), 55 deletions(-)
 delete mode 100644 package/tcpreplay/tcpreplay-0001-Fix-build-errors-when-ENABLE_VERBOSE-is-not-set.patch

diff --git a/package/tcpreplay/tcpreplay-0001-Fix-build-errors-when-ENABLE_VERBOSE-is-not-set.patch b/package/tcpreplay/tcpreplay-0001-Fix-build-errors-when-ENABLE_VERBOSE-is-not-set.patch
deleted file mode 100644
index cbc829d..0000000
--- a/package/tcpreplay/tcpreplay-0001-Fix-build-errors-when-ENABLE_VERBOSE-is-not-set.patch
+++ /dev/null
@@ -1,54 +0,0 @@
-From 12d0d0876a9a9bf2818ba24ecb5646952b958c39 Mon Sep 17 00:00:00 2001
-From: Chris Packham <judge.packham@gmail.com>
-Date: Wed, 22 Jan 2014 20:37:04 +1300
-Subject: [PATCH] Fix build errors when ENABLE_VERBOSE is not set
-
-Upstream: https://github.com/cpackham/tcpreplay/commit/12d0d0876a9a9
-Fixes #59
-
-When ENABLE_VERBOSE is not set some additional calls to tcpreplay_seterr
-are made. When conforming to C99 variadic macros at least one argument is
-required after the format string[1]. To avoid this problem update the
-calls to tcpreplay_seterr to use a "%s" format string.
-
-[1] - http://gcc.gnu.org/onlinedocs/cpp/Variadic-Macros.html
-
-Signed-off-by: Chris Packham <judge.packham@gmail.com>
----
- src/tcpreplay_api.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/tcpreplay_api.c b/src/tcpreplay_api.c
-index 6b81bcc..de67080 100644
---- a/src/tcpreplay_api.c
-+++ b/src/tcpreplay_api.c
-@@ -690,7 +690,7 @@ tcpreplay_set_verbose(tcpreplay_t *ctx, bool value)
-     ctx->options->verbose = value;
-     return 0;
- #else
--    tcpreplay_seterr(ctx, "verbose mode not supported");
-+    tcpreplay_seterr(ctx, "%s", "verbose mode not supported");
-     return -1;
- #endif
- }
-@@ -710,7 +710,7 @@ tcpreplay_set_tcpdump_args(tcpreplay_t *ctx, char *value)
-     ctx->options->tcpdump_args = safe_strdup(value);
-     return 0;
- #else
--    tcpreplay_seterr(ctx, "verbose mode not supported");
-+    tcpreplay_seterr(ctx, "%s", "verbose mode not supported");
-     return -1;
- #endif
- }
-@@ -731,7 +731,7 @@ tcpreplay_set_tcpdump(tcpreplay_t *ctx, tcpdump_t *value)
-     ctx->options->tcpdump = value;
-     return 0;
- #else
--    tcpreplay_seterr(ctx, "verbose mode not supported");
-+    tcpreplay_seterr(ctx, "%s", "verbose mode not supported");
-     return -1;
- #endif
- }
--- 
-1.8.5.2
-
diff --git a/package/tcpreplay/tcpreplay.mk b/package/tcpreplay/tcpreplay.mk
index fdb42a5..e1ff1f5 100644
--- a/package/tcpreplay/tcpreplay.mk
+++ b/package/tcpreplay/tcpreplay.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-TCPREPLAY_VERSION = 4.0.2
+TCPREPLAY_VERSION = 4.0.3
 TCPREPLAY_SITE = http://downloads.sourceforge.net/project/tcpreplay/tcpreplay/$(TCPREPLAY_VERSION)
 TCPREPLAY_LICENSE = GPLv3
 TCPREPLAY_LICENSE_FILES = docs/LICENSE
-- 
1.8.3.2

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

* [Buildroot] [PATCH 14/14] tcpreplay: bump to version 4.0.3
  2014-03-10 20:26 ` [Buildroot] [PATCH 14/14] tcpreplay: bump to version 4.0.3 Gustavo Zacarias
@ 2014-03-11  3:48   ` Chris Packham
  0 siblings, 0 replies; 18+ messages in thread
From: Chris Packham @ 2014-03-11  3:48 UTC (permalink / raw)
  To: buildroot

Hi,

On Tue, Mar 11, 2014 at 9:26 AM, Gustavo Zacarias
<gustavo@zacarias.com.ar> wrote:
> Patch removed, already upstream.
>
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  ...ild-errors-when-ENABLE_VERBOSE-is-not-set.patch | 54 ----------------------
>  package/tcpreplay/tcpreplay.mk                     |  2 +-
>  2 files changed, 1 insertion(+), 55 deletions(-)
>  delete mode 100644 package/tcpreplay/tcpreplay-0001-Fix-build-errors-when-ENABLE_VERBOSE-is-not-set.patch

Beat me to it :)

Looks good to me

Reviewed-by: Chris Packham <judge.packham@gmail.com>

>
> diff --git a/package/tcpreplay/tcpreplay-0001-Fix-build-errors-when-ENABLE_VERBOSE-is-not-set.patch b/package/tcpreplay/tcpreplay-0001-Fix-build-errors-when-ENABLE_VERBOSE-is-not-set.patch
> deleted file mode 100644
> index cbc829d..0000000
> --- a/package/tcpreplay/tcpreplay-0001-Fix-build-errors-when-ENABLE_VERBOSE-is-not-set.patch
> +++ /dev/null
> @@ -1,54 +0,0 @@
> -From 12d0d0876a9a9bf2818ba24ecb5646952b958c39 Mon Sep 17 00:00:00 2001
> -From: Chris Packham <judge.packham@gmail.com>
> -Date: Wed, 22 Jan 2014 20:37:04 +1300
> -Subject: [PATCH] Fix build errors when ENABLE_VERBOSE is not set
> -
> -Upstream: https://github.com/cpackham/tcpreplay/commit/12d0d0876a9a9
> -Fixes #59
> -
> -When ENABLE_VERBOSE is not set some additional calls to tcpreplay_seterr
> -are made. When conforming to C99 variadic macros at least one argument is
> -required after the format string[1]. To avoid this problem update the
> -calls to tcpreplay_seterr to use a "%s" format string.
> -
> -[1] - http://gcc.gnu.org/onlinedocs/cpp/Variadic-Macros.html
> -
> -Signed-off-by: Chris Packham <judge.packham@gmail.com>
> ----
> - src/tcpreplay_api.c | 6 +++---
> - 1 file changed, 3 insertions(+), 3 deletions(-)
> -
> -diff --git a/src/tcpreplay_api.c b/src/tcpreplay_api.c
> -index 6b81bcc..de67080 100644
> ---- a/src/tcpreplay_api.c
> -+++ b/src/tcpreplay_api.c
> -@@ -690,7 +690,7 @@ tcpreplay_set_verbose(tcpreplay_t *ctx, bool value)
> -     ctx->options->verbose = value;
> -     return 0;
> - #else
> --    tcpreplay_seterr(ctx, "verbose mode not supported");
> -+    tcpreplay_seterr(ctx, "%s", "verbose mode not supported");
> -     return -1;
> - #endif
> - }
> -@@ -710,7 +710,7 @@ tcpreplay_set_tcpdump_args(tcpreplay_t *ctx, char *value)
> -     ctx->options->tcpdump_args = safe_strdup(value);
> -     return 0;
> - #else
> --    tcpreplay_seterr(ctx, "verbose mode not supported");
> -+    tcpreplay_seterr(ctx, "%s", "verbose mode not supported");
> -     return -1;
> - #endif
> - }
> -@@ -731,7 +731,7 @@ tcpreplay_set_tcpdump(tcpreplay_t *ctx, tcpdump_t *value)
> -     ctx->options->tcpdump = value;
> -     return 0;
> - #else
> --    tcpreplay_seterr(ctx, "verbose mode not supported");
> -+    tcpreplay_seterr(ctx, "%s", "verbose mode not supported");
> -     return -1;
> - #endif
> - }
> ---
> -1.8.5.2
> -
> diff --git a/package/tcpreplay/tcpreplay.mk b/package/tcpreplay/tcpreplay.mk
> index fdb42a5..e1ff1f5 100644
> --- a/package/tcpreplay/tcpreplay.mk
> +++ b/package/tcpreplay/tcpreplay.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>
> -TCPREPLAY_VERSION = 4.0.2
> +TCPREPLAY_VERSION = 4.0.3
>  TCPREPLAY_SITE = http://downloads.sourceforge.net/project/tcpreplay/tcpreplay/$(TCPREPLAY_VERSION)
>  TCPREPLAY_LICENSE = GPLv3
>  TCPREPLAY_LICENSE_FILES = docs/LICENSE
> --
> 1.8.3.2
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3
  2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
                   ` (12 preceding siblings ...)
  2014-03-10 20:26 ` [Buildroot] [PATCH 14/14] tcpreplay: bump to version 4.0.3 Gustavo Zacarias
@ 2014-03-11 22:05 ` Peter Korsgaard
  13 siblings, 0 replies; 18+ messages in thread
From: Peter Korsgaard @ 2014-03-11 22:05 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > TPACKET_V3 support issues fixed in 1.5.2/1.5.3 so the patch is no longer
 > necessary.

Committed series, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 03/14] nmap: bump to version 6.40
  2014-03-10 20:26 ` [Buildroot] [PATCH 03/14] nmap: bump to version 6.40 Gustavo Zacarias
@ 2014-12-13 15:40   ` Yann E. MORIN
  2014-12-15 12:41     ` Gustavo Zacarias
  0 siblings, 1 reply; 18+ messages in thread
From: Yann E. MORIN @ 2014-12-13 15:40 UTC (permalink / raw)
  To: buildroot

Gustavo, All,

Rviving an old thread...

On 2014-03-10 17:26 -0300, Gustavo Zacarias spake thusly:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/nmap/nmap.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/nmap/nmap.mk b/package/nmap/nmap.mk
> index 47e4cfc..4ed39bf 100644
> --- a/package/nmap/nmap.mk
> +++ b/package/nmap/nmap.mk
> @@ -4,13 +4,13 @@
>  #
>  ################################################################################
>  
> -NMAP_VERSION = 6.01
> +NMAP_VERSION = 6.40
>  NMAP_SITE = http://nmap.org/dist
>  NMAP_SOURCE = nmap-$(NMAP_VERSION).tar.bz2
>  NMAP_DEPENDENCIES = libpcap pcre
>  NMAP_CONF_OPT = --without-liblua --without-zenmap \
>  	--with-libdnet=included --with-liblinear=included \
> -	--with-libpcre="$(STAGING_DIR)/usr"
> +	--with-libpcre="$(STAGING_DIR)/usr" --without-ncat

Why did you disable ncat?

Regards,
Yann E. MORIN.

>  NMAP_LICENSE = GPLv2
>  NMAP_LICENSE_FILES = COPYING
>  
> -- 
> 1.8.3.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH 03/14] nmap: bump to version 6.40
  2014-12-13 15:40   ` Yann E. MORIN
@ 2014-12-15 12:41     ` Gustavo Zacarias
  0 siblings, 0 replies; 18+ messages in thread
From: Gustavo Zacarias @ 2014-12-15 12:41 UTC (permalink / raw)
  To: buildroot

On 12/13/2014 12:40 PM, Yann E. MORIN wrote:
> Why did you disable ncat?

Hi.
I don't recall OTOH, i think there was a build failure under certain
conditions.
Regards.

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

end of thread, other threads:[~2014-12-15 12:41 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-10 20:26 [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 02/14] fping: bump to version 3.9 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 03/14] nmap: bump to version 6.40 Gustavo Zacarias
2014-12-13 15:40   ` Yann E. MORIN
2014-12-15 12:41     ` Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 04/14] iftop: bump to version 1.0pre4 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 05/14] ipsec-tools: fix static linking Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 06/14] ipsec-tools: bump to version 0.8.2 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 07/14] msmtp: bump to version 1.4.32 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 08/14] netatalk: bump to version 3.0.8 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 09/14] httping: bump to version 2.3.4 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 10/14] radvd: bump to version 1.9.9 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 11/14] macchanger: bump to version 1.6.0 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 12/14] ptpd2: bump to version 2.3.0 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 13/14] xl2tp: bump to version 1.3.6 Gustavo Zacarias
2014-03-10 20:26 ` [Buildroot] [PATCH 14/14] tcpreplay: bump to version 4.0.3 Gustavo Zacarias
2014-03-11  3:48   ` Chris Packham
2014-03-11 22:05 ` [Buildroot] [PATCH 01/14] libpcap: bump to version 1.5.3 Peter Korsgaard

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