* [Buildroot] [PATCH 2/7] hiawatha: bump to version 8.8
2013-03-01 10:23 [Buildroot] [PATCH 1/7] libmicrohttpd: bump to version 0.9.25 Gustavo Zacarias
@ 2013-03-01 10:23 ` Gustavo Zacarias
2013-03-01 15:13 ` Peter Korsgaard
2013-03-01 10:23 ` [Buildroot] [PATCH 3/7] ipset: bump to version 6.17 Gustavo Zacarias
` (5 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Gustavo Zacarias @ 2013-03-01 10:23 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/hiawatha/hiawatha.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/hiawatha/hiawatha.mk b/package/hiawatha/hiawatha.mk
index 75f9688..5c328bf 100644
--- a/package/hiawatha/hiawatha.mk
+++ b/package/hiawatha/hiawatha.mk
@@ -1,4 +1,4 @@
-HIAWATHA_VERSION = 8.7
+HIAWATHA_VERSION = 8.8
HIAWATHA_SITE = http://www.hiawatha-webserver.org/files
HIAWATHA_LICENSE = GPLv2
HIAWATHA_LICENSE_FILES = LICENSE
--
1.7.12.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* [Buildroot] [PATCH 3/7] ipset: bump to version 6.17
2013-03-01 10:23 [Buildroot] [PATCH 1/7] libmicrohttpd: bump to version 0.9.25 Gustavo Zacarias
2013-03-01 10:23 ` [Buildroot] [PATCH 2/7] hiawatha: bump to version 8.8 Gustavo Zacarias
@ 2013-03-01 10:23 ` Gustavo Zacarias
2013-03-01 15:13 ` Peter Korsgaard
2013-03-01 10:23 ` [Buildroot] [PATCH 4/7] dosfstools: bump to version 3.0.15 Gustavo Zacarias
` (4 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Gustavo Zacarias @ 2013-03-01 10:23 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/ipset/ipset.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/ipset/ipset.mk b/package/ipset/ipset.mk
index 3ef9747..4628066 100644
--- a/package/ipset/ipset.mk
+++ b/package/ipset/ipset.mk
@@ -4,7 +4,7 @@
#
#############################################################
-IPSET_VERSION = 6.16.1
+IPSET_VERSION = 6.17
IPSET_SOURCE = ipset-$(IPSET_VERSION).tar.bz2
IPSET_SITE = http://ipset.netfilter.org
IPSET_DEPENDENCIES = libmnl host-pkgconf
--
1.7.12.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* [Buildroot] [PATCH 4/7] dosfstools: bump to version 3.0.15
2013-03-01 10:23 [Buildroot] [PATCH 1/7] libmicrohttpd: bump to version 0.9.25 Gustavo Zacarias
2013-03-01 10:23 ` [Buildroot] [PATCH 2/7] hiawatha: bump to version 8.8 Gustavo Zacarias
2013-03-01 10:23 ` [Buildroot] [PATCH 3/7] ipset: bump to version 6.17 Gustavo Zacarias
@ 2013-03-01 10:23 ` Gustavo Zacarias
2013-03-01 15:14 ` Peter Korsgaard
2013-03-01 10:23 ` [Buildroot] [PATCH 5/7] libnl: bump to version 3.2.21 Gustavo Zacarias
` (3 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Gustavo Zacarias @ 2013-03-01 10:23 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/dosfstools/Config.in | 1 +
package/dosfstools/dosfstools.mk | 8 +++++---
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/package/dosfstools/Config.in b/package/dosfstools/Config.in
index 1b92026..6573cda 100644
--- a/package/dosfstools/Config.in
+++ b/package/dosfstools/Config.in
@@ -1,6 +1,7 @@
config BR2_PACKAGE_DOSFSTOOLS
bool "dosfstools"
depends on BR2_LARGEFILE
+ select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
help
Tools for creating and checking DOS FAT filesystems.
diff --git a/package/dosfstools/dosfstools.mk b/package/dosfstools/dosfstools.mk
index 4f89364..3bb6a2f 100644
--- a/package/dosfstools/dosfstools.mk
+++ b/package/dosfstools/dosfstools.mk
@@ -4,8 +4,10 @@
#
#############################################################
-DOSFSTOOLS_VERSION = 3.0.12
+DOSFSTOOLS_VERSION = 3.0.15
DOSFSTOOLS_SITE = http://fossies.org/linux/misc/
+DOSFSTOOLS_DEPENDENCIES = $(if $(BR2_ENABLE_LOCALE),,libiconv)
+DOSFSTOOLS_LINK_ICONV = $(if $(BR2_ENABLE_LOCALE),,-liconv)
DOSFSTOOLS_LICENSE = GPLv3+
DOSFSTOOLS_LICENSE_FILES = COPYING
MKDOSFS_BINARY = mkdosfs
@@ -13,8 +15,8 @@ DOSFSCK_BINARY = dosfsck
DOSFSLABEL_BINARY = dosfslabel
define DOSFSTOOLS_BUILD_CMDS
- $(MAKE) CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" \
- CC="$(TARGET_CC)" -C $(@D)
+ $(MAKE) CFLAGS="$(TARGET_CFLAGS)" CC="$(TARGET_CC)" \
+ LDFLAGS="$(TARGET_LDFLAGS) $(DOSFSTOOLS_LINK_ICONV)" -C $(@D)
endef
DOSFSTOOLS_INSTALL_BIN_FILES_$(BR2_PACKAGE_DOSFSTOOLS_MKDOSFS)+=$(MKDOSFS_BINARY)
--
1.7.12.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* [Buildroot] [PATCH 4/7] dosfstools: bump to version 3.0.15
2013-03-01 10:23 ` [Buildroot] [PATCH 4/7] dosfstools: bump to version 3.0.15 Gustavo Zacarias
@ 2013-03-01 15:14 ` Peter Korsgaard
0 siblings, 0 replies; 14+ messages in thread
From: Peter Korsgaard @ 2013-03-01 15:14 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Gustavo> ---
Gustavo> package/dosfstools/Config.in | 1 +
Gustavo> package/dosfstools/dosfstools.mk | 8 +++++---
Gustavo> 2 files changed, 6 insertions(+), 3 deletions(-)
Gustavo> diff --git a/package/dosfstools/Config.in b/package/dosfstools/Config.in
Gustavo> index 1b92026..6573cda 100644
Gustavo> --- a/package/dosfstools/Config.in
Gustavo> +++ b/package/dosfstools/Config.in
Gustavo> @@ -1,6 +1,7 @@
Gustavo> config BR2_PACKAGE_DOSFSTOOLS
Gustavo> bool "dosfstools"
Gustavo> depends on BR2_LARGEFILE
Gustavo> + select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
Gustavo> help
Gustavo> Tools for creating and checking DOS FAT filesystems.
Gustavo> diff --git a/package/dosfstools/dosfstools.mk b/package/dosfstools/dosfstools.mk
Gustavo> index 4f89364..3bb6a2f 100644
Gustavo> --- a/package/dosfstools/dosfstools.mk
Gustavo> +++ b/package/dosfstools/dosfstools.mk
Gustavo> @@ -4,8 +4,10 @@
Gustavo> #
Gustavo> #############################################################
Gustavo> -DOSFSTOOLS_VERSION = 3.0.12
Gustavo> +DOSFSTOOLS_VERSION = 3.0.15
Gustavo> DOSFSTOOLS_SITE = http://fossies.org/linux/misc/
Gustavo> +DOSFSTOOLS_DEPENDENCIES = $(if $(BR2_ENABLE_LOCALE),,libiconv)
Gustavo> +DOSFSTOOLS_LINK_ICONV = $(if $(BR2_ENABLE_LOCALE),,-liconv)
Gustavo> DOSFSTOOLS_LICENSE = GPLv3+
Gustavo> DOSFSTOOLS_LICENSE_FILES = COPYING
Gustavo> MKDOSFS_BINARY = mkdosfs
Gustavo> @@ -13,8 +15,8 @@ DOSFSCK_BINARY = dosfsck
Gustavo> DOSFSLABEL_BINARY = dosfslabel
Gustavo> define DOSFSTOOLS_BUILD_CMDS
Gustavo> - $(MAKE) CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" \
Gustavo> - CC="$(TARGET_CC)" -C $(@D)
Gustavo> + $(MAKE) CFLAGS="$(TARGET_CFLAGS)" CC="$(TARGET_CC)" \
Gustavo> + LDFLAGS="$(TARGET_LDFLAGS) $(DOSFSTOOLS_LINK_ICONV)" -C $(@D)
I would prefer to see A DOSFSTOOLS_LDFLAGS instead of this. Care to
resend with that fixed?
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 14+ messages in thread
* [Buildroot] [PATCH 5/7] libnl: bump to version 3.2.21
2013-03-01 10:23 [Buildroot] [PATCH 1/7] libmicrohttpd: bump to version 0.9.25 Gustavo Zacarias
` (2 preceding siblings ...)
2013-03-01 10:23 ` [Buildroot] [PATCH 4/7] dosfstools: bump to version 3.0.15 Gustavo Zacarias
@ 2013-03-01 10:23 ` Gustavo Zacarias
2013-03-01 15:15 ` Peter Korsgaard
2013-03-01 10:23 ` [Buildroot] [PATCH 6/7] php: bump to version 5.3.22 Gustavo Zacarias
` (2 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Gustavo Zacarias @ 2013-03-01 10:23 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/libnl/libnl.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/libnl/libnl.mk b/package/libnl/libnl.mk
index 35b2a51..7620cf7 100644
--- a/package/libnl/libnl.mk
+++ b/package/libnl/libnl.mk
@@ -4,7 +4,7 @@
#
#############################################################
-LIBNL_VERSION = 3.2.18
+LIBNL_VERSION = 3.2.21
LIBNL_SITE = http://www.infradead.org/~tgr/libnl/files
LIBNL_LICENSE = LGPLv2.1+
LIBNL_LICENSE_FILES = COPYING
--
1.7.12.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* [Buildroot] [PATCH 6/7] php: bump to version 5.3.22
2013-03-01 10:23 [Buildroot] [PATCH 1/7] libmicrohttpd: bump to version 0.9.25 Gustavo Zacarias
` (3 preceding siblings ...)
2013-03-01 10:23 ` [Buildroot] [PATCH 5/7] libnl: bump to version 3.2.21 Gustavo Zacarias
@ 2013-03-01 10:23 ` Gustavo Zacarias
2013-03-01 15:15 ` Peter Korsgaard
2013-03-01 10:23 ` [Buildroot] [PATCH 7/7] file: bump to version 5.13 Gustavo Zacarias
2013-03-01 15:13 ` [Buildroot] [PATCH 1/7] libmicrohttpd: bump to version 0.9.25 Peter Korsgaard
6 siblings, 1 reply; 14+ messages in thread
From: Gustavo Zacarias @ 2013-03-01 10:23 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/php/php.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/php/php.mk b/package/php/php.mk
index c89b467..a417939 100644
--- a/package/php/php.mk
+++ b/package/php/php.mk
@@ -4,7 +4,7 @@
#
#############################################################
-PHP_VERSION = 5.3.20
+PHP_VERSION = 5.3.22
PHP_SOURCE = php-$(PHP_VERSION).tar.bz2
PHP_SITE = http://www.php.net/distributions
PHP_INSTALL_STAGING = YES
--
1.7.12.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* [Buildroot] [PATCH 7/7] file: bump to version 5.13
2013-03-01 10:23 [Buildroot] [PATCH 1/7] libmicrohttpd: bump to version 0.9.25 Gustavo Zacarias
` (4 preceding siblings ...)
2013-03-01 10:23 ` [Buildroot] [PATCH 6/7] php: bump to version 5.3.22 Gustavo Zacarias
@ 2013-03-01 10:23 ` Gustavo Zacarias
2013-03-01 15:15 ` Peter Korsgaard
2013-03-01 15:13 ` [Buildroot] [PATCH 1/7] libmicrohttpd: bump to version 0.9.25 Peter Korsgaard
6 siblings, 1 reply; 14+ messages in thread
From: Gustavo Zacarias @ 2013-03-01 10:23 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/file/file.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/file/file.mk b/package/file/file.mk
index db68f66..7206705 100644
--- a/package/file/file.mk
+++ b/package/file/file.mk
@@ -4,7 +4,7 @@
#
#############################################################
-FILE_VERSION = 5.11
+FILE_VERSION = 5.13
FILE_SITE = ftp://ftp.astron.com/pub/file
FILE_DEPENDENCIES = host-file zlib
FILE_INSTALL_STAGING = YES
--
1.7.12.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* [Buildroot] [PATCH 1/7] libmicrohttpd: bump to version 0.9.25
2013-03-01 10:23 [Buildroot] [PATCH 1/7] libmicrohttpd: bump to version 0.9.25 Gustavo Zacarias
` (5 preceding siblings ...)
2013-03-01 10:23 ` [Buildroot] [PATCH 7/7] file: bump to version 5.13 Gustavo Zacarias
@ 2013-03-01 15:13 ` Peter Korsgaard
6 siblings, 0 replies; 14+ messages in thread
From: Peter Korsgaard @ 2013-03-01 15:13 UTC (permalink / raw)
To: buildroot
>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:
Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 14+ messages in thread