Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] xtables-addons: bump to version 2.10
@ 2015-11-24 16:15 Gustavo Zacarias
  0 siblings, 0 replies; 5+ messages in thread
From: Gustavo Zacarias @ 2015-11-24 16:15 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/xtables-addons/xtables-addons.hash | 7 ++++---
 package/xtables-addons/xtables-addons.mk   | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/package/xtables-addons/xtables-addons.hash b/package/xtables-addons/xtables-addons.hash
index c82f016..be8cb6e 100644
--- a/package/xtables-addons/xtables-addons.hash
+++ b/package/xtables-addons/xtables-addons.hash
@@ -1,3 +1,4 @@
-# Locally calculated after checking signature file from:
-# http://sourceforge.net/projects/xtables-addons/files/Xtables-addons/2.9/
-sha256	648f6cd17ba41916df5bb605e617b2f18461090139e67d7cf5c5bd8a04c701b0	xtables-addons-2.9.tar.xz
+# From http://sourceforge.net/projects/xtables-addons/files/Xtables-addons/2.10/
+sha1	bc6dcb1eb1328931189f6e73a1a02ef4cc51bc44	xtables-addons-2.10.tar.xz
+# Calculated based on the hash above
+sha256	2a2d92ae924437d757f55514502c6ef3aeccc6106f729c702efe703ad30f4007	xtables-addons-2.10.tar.xz
diff --git a/package/xtables-addons/xtables-addons.mk b/package/xtables-addons/xtables-addons.mk
index 30353a0..66e7386 100644
--- a/package/xtables-addons/xtables-addons.mk
+++ b/package/xtables-addons/xtables-addons.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-XTABLES_ADDONS_VERSION = 2.9
+XTABLES_ADDONS_VERSION = 2.10
 XTABLES_ADDONS_SOURCE = xtables-addons-$(XTABLES_ADDONS_VERSION).tar.xz
 XTABLES_ADDONS_SITE = http://downloads.sourceforge.net/project/xtables-addons/Xtables-addons
 XTABLES_ADDONS_DEPENDENCIES = iptables linux host-pkgconf
-- 
2.4.10

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

* [Buildroot] [PATCH next] gmp: bump to version 6.1.0
@ 2015-11-24 16:24 Gustavo Zacarias
  2015-11-24 16:24 ` [Buildroot] [PATCH] xtables-addons: bump to version 2.10 Gustavo Zacarias
  2015-11-24 16:40 ` [Buildroot] [PATCH next] gmp: bump to version 6.1.0 Thomas Petazzoni
  0 siblings, 2 replies; 5+ messages in thread
From: Gustavo Zacarias @ 2015-11-24 16:24 UTC (permalink / raw)
  To: buildroot

Patches are upstream so drop them.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 .../0001-arm-asm-conditional-on-no-thumb-1.patch   | 21 ---------------------
 .../0002-arm-asm-conditional-on-no-thumb-2.patch   | 21 ---------------------
 ...c-provide-default-bmod-to-mod-threshold-1.patch | 22 ----------------------
 package/gmp/gmp.hash                               |  2 +-
 package/gmp/gmp.mk                                 |  2 +-
 5 files changed, 2 insertions(+), 66 deletions(-)
 delete mode 100644 package/gmp/0001-arm-asm-conditional-on-no-thumb-1.patch
 delete mode 100644 package/gmp/0002-arm-asm-conditional-on-no-thumb-2.patch
 delete mode 100644 package/gmp/0003-powerpc-provide-default-bmod-to-mod-threshold-1.patch

diff --git a/package/gmp/0001-arm-asm-conditional-on-no-thumb-1.patch b/package/gmp/0001-arm-asm-conditional-on-no-thumb-1.patch
deleted file mode 100644
index eb678b0..0000000
--- a/package/gmp/0001-arm-asm-conditional-on-no-thumb-1.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-
-# HG changeset patch
-# User Torbjorn Granlund <tege@gmplib.org>
-# Date 1396035313 -3600
-# Node ID c56ea318eb6435bdd28dbfef657b2fe372134f1f
-# Parent  c6fe20ab62acc266ff5ad3629bef447bc43dcd1b
-Conditionalise ARM asm on !__thumb__.
-
-diff -r c6fe20ab62ac -r c56ea318eb64 mpn/generic/mod_1_1.c
---- a/mpn/generic/mod_1_1.c	Wed Mar 26 12:58:33 2014 +0100
-+++ b/mpn/generic/mod_1_1.c	Fri Mar 28 20:35:13 2014 +0100
-@@ -129,7 +129,7 @@
- 	     "%2" ((UDItype)(a0)), "r" ((UDItype)(b0)) __CLOBBER_CC)
- #endif
- 
--#if defined (__arm__) && W_TYPE_SIZE == 32
-+#if defined (__arm__) && !defined (__thumb__) && W_TYPE_SIZE == 32
- #define add_mssaaaa(m, sh, sl, ah, al, bh, bl)				\
-   __asm__ (  "adds	%2, %5, %6\n\t"					\
- 	     "adcs	%1, %3, %4\n\t"					\
-
diff --git a/package/gmp/0002-arm-asm-conditional-on-no-thumb-2.patch b/package/gmp/0002-arm-asm-conditional-on-no-thumb-2.patch
deleted file mode 100644
index 666cf58..0000000
--- a/package/gmp/0002-arm-asm-conditional-on-no-thumb-2.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-
-# HG changeset patch
-# User Torbjorn Granlund <tege@gmplib.org>
-# Date 1396602422 -7200
-# Node ID 676e2d0f0e4dd301a7066079d2c9326c25c34a40
-# Parent  0194a75b56b21a9196626430af86c5bd9110c42d
-Conditionalise ARM asm on !__thumb__.
-
-diff -r 0194a75b56b2 -r 676e2d0f0e4d mpn/generic/div_qr_1n_pi1.c
---- a/mpn/generic/div_qr_1n_pi1.c	Thu Apr 03 23:58:51 2014 +0200
-+++ b/mpn/generic/div_qr_1n_pi1.c	Fri Apr 04 11:07:02 2014 +0200
-@@ -130,7 +130,7 @@
- 	     "%2" ((UDItype)(a0)), "r" ((UDItype)(b0)) __CLOBBER_CC)
- #endif
- 
--#if defined (__arm__) && W_TYPE_SIZE == 32
-+#if defined (__arm__) && !defined (__thumb__) && W_TYPE_SIZE == 32
- #define add_mssaaaa(m, sh, sl, ah, al, bh, bl)				\
-   __asm__ (  "adds	%2, %5, %6\n\t"					\
- 	     "adcs	%1, %3, %4\n\t"					\
-
diff --git a/package/gmp/0003-powerpc-provide-default-bmod-to-mod-threshold-1.patch b/package/gmp/0003-powerpc-provide-default-bmod-to-mod-threshold-1.patch
deleted file mode 100644
index 76aa72f..0000000
--- a/package/gmp/0003-powerpc-provide-default-bmod-to-mod-threshold-1.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-
-# HG changeset patch
-# User Torbjorn Granlund <tege@gmplib.org>
-# Date 1395835068 -3600
-# Node ID 4a6d258b467f661da0894cc60ecd060f2e3c67c7
-# Parent  301ce2788826a2d4d2725bd5cf01e998638db37a
-Provide default for BMOD_1_TO_MOD_1_THRESHOLD.
-
-diff -r 301ce2788826 -r 4a6d258b467f mpn/powerpc64/mode64/gcd_1.asm
---- a/mpn/powerpc64/mode64/gcd_1.asm	Tue Mar 25 15:34:52 2014 +0100
-+++ b/mpn/powerpc64/mode64/gcd_1.asm	Wed Mar 26 12:57:48 2014 +0100
-@@ -43,6 +43,9 @@
- define(`n',     `r4')
- define(`v0',    `r5')
- 
-+ifdef(`BMOD_1_TO_MOD_1_THRESHOLD',,
-+  `define(`BMOD_1_TO_MOD_1_THRESHOLD',30)')
-+
- EXTERN_FUNC(mpn_mod_1)
- EXTERN_FUNC(mpn_modexact_1c_odd)
- 
-
diff --git a/package/gmp/gmp.hash b/package/gmp/gmp.hash
index 9fe6344..e803623 100644
--- a/package/gmp/gmp.hash
+++ b/package/gmp/gmp.hash
@@ -1,2 +1,2 @@
 # Locally calculated after checking pgp signature
-sha256	9156d32edac6955bc53b0218f5f3763facb890b73a835d5e1b901dcf8eb8b764	gmp-6.0.0a.tar.xz
+sha256	68dadacce515b0f8a54f510edf07c1b636492bcdb8e8d54c56eb216225d16989	gmp-6.1.0.tar.xz
diff --git a/package/gmp/gmp.mk b/package/gmp/gmp.mk
index 96dd6ed..af6958d 100644
--- a/package/gmp/gmp.mk
+++ b/package/gmp/gmp.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-GMP_VERSION = 6.0.0a
+GMP_VERSION = 6.1.0
 GMP_SITE = $(BR2_GNU_MIRROR)/gmp
 GMP_SOURCE = gmp-$(GMP_VERSION).tar.xz
 GMP_INSTALL_STAGING = YES
-- 
2.4.10

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

* [Buildroot] [PATCH] xtables-addons: bump to version 2.10
  2015-11-24 16:24 [Buildroot] [PATCH next] gmp: bump to version 6.1.0 Gustavo Zacarias
@ 2015-11-24 16:24 ` Gustavo Zacarias
  2015-11-24 16:39   ` Thomas Petazzoni
  2015-11-24 16:40 ` [Buildroot] [PATCH next] gmp: bump to version 6.1.0 Thomas Petazzoni
  1 sibling, 1 reply; 5+ messages in thread
From: Gustavo Zacarias @ 2015-11-24 16:24 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/xtables-addons/xtables-addons.hash | 7 ++++---
 package/xtables-addons/xtables-addons.mk   | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/package/xtables-addons/xtables-addons.hash b/package/xtables-addons/xtables-addons.hash
index c82f016..be8cb6e 100644
--- a/package/xtables-addons/xtables-addons.hash
+++ b/package/xtables-addons/xtables-addons.hash
@@ -1,3 +1,4 @@
-# Locally calculated after checking signature file from:
-# http://sourceforge.net/projects/xtables-addons/files/Xtables-addons/2.9/
-sha256	648f6cd17ba41916df5bb605e617b2f18461090139e67d7cf5c5bd8a04c701b0	xtables-addons-2.9.tar.xz
+# From http://sourceforge.net/projects/xtables-addons/files/Xtables-addons/2.10/
+sha1	bc6dcb1eb1328931189f6e73a1a02ef4cc51bc44	xtables-addons-2.10.tar.xz
+# Calculated based on the hash above
+sha256	2a2d92ae924437d757f55514502c6ef3aeccc6106f729c702efe703ad30f4007	xtables-addons-2.10.tar.xz
diff --git a/package/xtables-addons/xtables-addons.mk b/package/xtables-addons/xtables-addons.mk
index 30353a0..66e7386 100644
--- a/package/xtables-addons/xtables-addons.mk
+++ b/package/xtables-addons/xtables-addons.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-XTABLES_ADDONS_VERSION = 2.9
+XTABLES_ADDONS_VERSION = 2.10
 XTABLES_ADDONS_SOURCE = xtables-addons-$(XTABLES_ADDONS_VERSION).tar.xz
 XTABLES_ADDONS_SITE = http://downloads.sourceforge.net/project/xtables-addons/Xtables-addons
 XTABLES_ADDONS_DEPENDENCIES = iptables linux host-pkgconf
-- 
2.4.10

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

* [Buildroot] [PATCH] xtables-addons: bump to version 2.10
  2015-11-24 16:24 ` [Buildroot] [PATCH] xtables-addons: bump to version 2.10 Gustavo Zacarias
@ 2015-11-24 16:39   ` Thomas Petazzoni
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2015-11-24 16:39 UTC (permalink / raw)
  To: buildroot

Dear Gustavo Zacarias,

On Tue, 24 Nov 2015 13:24:13 -0300, Gustavo Zacarias wrote:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/xtables-addons/xtables-addons.hash | 7 ++++---
>  package/xtables-addons/xtables-addons.mk   | 2 +-
>  2 files changed, 5 insertions(+), 4 deletions(-)

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

* [Buildroot] [PATCH next] gmp: bump to version 6.1.0
  2015-11-24 16:24 [Buildroot] [PATCH next] gmp: bump to version 6.1.0 Gustavo Zacarias
  2015-11-24 16:24 ` [Buildroot] [PATCH] xtables-addons: bump to version 2.10 Gustavo Zacarias
@ 2015-11-24 16:40 ` Thomas Petazzoni
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2015-11-24 16:40 UTC (permalink / raw)
  To: buildroot

Dear Gustavo Zacarias,

On Tue, 24 Nov 2015 13:24:12 -0300, Gustavo Zacarias wrote:
> Patches are upstream so drop them.
> 
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  .../0001-arm-asm-conditional-on-no-thumb-1.patch   | 21 ---------------------
>  .../0002-arm-asm-conditional-on-no-thumb-2.patch   | 21 ---------------------
>  ...c-provide-default-bmod-to-mod-threshold-1.patch | 22 ----------------------
>  package/gmp/gmp.hash                               |  2 +-
>  package/gmp/gmp.mk                                 |  2 +-
>  5 files changed, 2 insertions(+), 66 deletions(-)
>  delete mode 100644 package/gmp/0001-arm-asm-conditional-on-no-thumb-1.patch
>  delete mode 100644 package/gmp/0002-arm-asm-conditional-on-no-thumb-2.patch
>  delete mode 100644 package/gmp/0003-powerpc-provide-default-bmod-to-mod-threshold-1.patch

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2015-11-24 16:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-24 16:24 [Buildroot] [PATCH next] gmp: bump to version 6.1.0 Gustavo Zacarias
2015-11-24 16:24 ` [Buildroot] [PATCH] xtables-addons: bump to version 2.10 Gustavo Zacarias
2015-11-24 16:39   ` Thomas Petazzoni
2015-11-24 16:40 ` [Buildroot] [PATCH next] gmp: bump to version 6.1.0 Thomas Petazzoni
  -- strict thread matches above, loose matches on Subject: below --
2015-11-24 16:15 [Buildroot] [PATCH] xtables-addons: bump to version 2.10 Gustavo Zacarias

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