Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream
@ 2016-05-19 12:45 Matt Weber
  2016-05-19 12:45 ` [Buildroot] [PATCH v3 2/2] igmpproxy: bump version to a731683d1a65956fa05024b0597b105fe6a3a122 Matt Weber
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Matt Weber @ 2016-05-19 12:45 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
--
v2 -> v3
 - Upstream version bump now contains this feature
---
 package/igmpproxy/0001-uclinux.patch | 16 ----------------
 1 file changed, 16 deletions(-)
 delete mode 100644 package/igmpproxy/0001-uclinux.patch

diff --git a/package/igmpproxy/0001-uclinux.patch b/package/igmpproxy/0001-uclinux.patch
deleted file mode 100644
index 7fa4a23..0000000
--- a/package/igmpproxy/0001-uclinux.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-configure.ac: uclinux is also linux
-
-Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
-
-diff -Nura igmpproxy-0.1.orig/configure.ac igmpproxy-0.1/configure.ac
---- igmpproxy-0.1.orig/configure.ac	2014-03-12 18:43:02.369323771 -0300
-+++ igmpproxy-0.1/configure.ac	2014-03-12 18:43:22.129979179 -0300
-@@ -7,7 +7,7 @@
- 
- AC_CANONICAL_HOST
- case $host_os in
--	linux*) os=linux;;
-+	linux*|uclinux*) os=linux;;
- 	freebsd*) os=freebsd;;
- 	netbsd*) os=netbsd;;
- 	openbsd*) os=openbsd;;
-- 
1.9.1

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

* [Buildroot] [PATCH v3 2/2] igmpproxy: bump version to a731683d1a65956fa05024b0597b105fe6a3a122
  2016-05-19 12:45 [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream Matt Weber
@ 2016-05-19 12:45 ` Matt Weber
  2016-05-19 12:55 ` [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream Baruch Siach
  2016-05-19 14:03 ` Thomas Petazzoni
  2 siblings, 0 replies; 5+ messages in thread
From: Matt Weber @ 2016-05-19 12:45 UTC (permalink / raw)
  To: buildroot

Adds uclinux support.

Fixes the following musl use standard unsigned integer
types autobuilder failures.
http://autobuild.buildroot.net/results/c6a/c6a6eec34cffb2c7876595b36fb8a01f475583f9/
http://autobuild.buildroot.net/results/943/9432748bf7b1e24db9fcb0a8cce6942fcdf6be5b/
http://autobuild.buildroot.net/results/083/083c61f43c2f1f0dec69d44583b447a0520933b7/

Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
--
v2-> v3
 - New upstream contains required changes, bumping version

v1 -> v2
(Suggested by Thomas)
 - Updated patch comment to correctly represent the origin
   and latest issue tracking
 - Updated title to reflect patch purpose
---
 package/igmpproxy/igmpproxy.hash | 1 +
 package/igmpproxy/igmpproxy.mk   | 5 ++---
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/igmpproxy/igmpproxy.hash b/package/igmpproxy/igmpproxy.hash
index f7d3b1e..3bfa01d 100644
--- a/package/igmpproxy/igmpproxy.hash
+++ b/package/igmpproxy/igmpproxy.hash
@@ -1,2 +1,3 @@
 # Locally computed:
 sha256  ee18ff3d8c3ae3a29dccb7e5eedf332337330020168bd95a11cece8d7d7ee6ae  igmpproxy-0.1.tar.gz
+sha256 2be2171cf273678810283937f7752dc9b8402456d0a03ee55f06ca52fadf075f  igmpproxy-a731683d1a65956fa05024b0597b105fe6a3a122.tar.gz
diff --git a/package/igmpproxy/igmpproxy.mk b/package/igmpproxy/igmpproxy.mk
index cdf3774..9816872 100644
--- a/package/igmpproxy/igmpproxy.mk
+++ b/package/igmpproxy/igmpproxy.mk
@@ -4,9 +4,8 @@
 #
 ################################################################################
 
-IGMPPROXY_VERSION = 0.1
-IGMPPROXY_SITE = http://downloads.sourceforge.net/project/igmpproxy/igmpproxy/$(IGMPPROXY_VERSION)
-# igmpproxy-01-uclinux.patch
+IGMPPROXY_VERSION = a731683d1a65956fa05024b0597b105fe6a3a122
+IGMPPROXY_SITE = $(call github,pali,igmpproxy,$(IGMPPROXY_VERSION))
 IGMPPROXY_AUTORECONF = YES
 IGMPPROXY_LICENSE = GPLv2+
 IGMPPROXY_LICENSE_FILES = COPYING
-- 
1.9.1

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

* [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream
  2016-05-19 12:45 [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream Matt Weber
  2016-05-19 12:45 ` [Buildroot] [PATCH v3 2/2] igmpproxy: bump version to a731683d1a65956fa05024b0597b105fe6a3a122 Matt Weber
@ 2016-05-19 12:55 ` Baruch Siach
  2016-05-19 14:22   ` Matthew Weber
  2016-05-19 14:03 ` Thomas Petazzoni
  2 siblings, 1 reply; 5+ messages in thread
From: Baruch Siach @ 2016-05-19 12:55 UTC (permalink / raw)
  To: buildroot

Hi Matthew,

On Thu, May 19, 2016 at 07:45:24AM -0500, Matt Weber wrote:
> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
> --
> v2 -> v3
>  - Upstream version bump now contains this feature

Then both patches should be squashed into one.

baruch

> ---
>  package/igmpproxy/0001-uclinux.patch | 16 ----------------
>  1 file changed, 16 deletions(-)
>  delete mode 100644 package/igmpproxy/0001-uclinux.patch
> 
> diff --git a/package/igmpproxy/0001-uclinux.patch b/package/igmpproxy/0001-uclinux.patch
> deleted file mode 100644
> index 7fa4a23..0000000
> --- a/package/igmpproxy/0001-uclinux.patch
> +++ /dev/null
> @@ -1,16 +0,0 @@
> -configure.ac: uclinux is also linux
> -
> -Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> -
> -diff -Nura igmpproxy-0.1.orig/configure.ac igmpproxy-0.1/configure.ac
> ---- igmpproxy-0.1.orig/configure.ac	2014-03-12 18:43:02.369323771 -0300
> -+++ igmpproxy-0.1/configure.ac	2014-03-12 18:43:22.129979179 -0300
> -@@ -7,7 +7,7 @@
> - 
> - AC_CANONICAL_HOST
> - case $host_os in
> --	linux*) os=linux;;
> -+	linux*|uclinux*) os=linux;;
> - 	freebsd*) os=freebsd;;
> - 	netbsd*) os=netbsd;;
> - 	openbsd*) os=openbsd;;

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.2.679.5364, http://www.tkos.co.il -

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

* [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream
  2016-05-19 12:45 [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream Matt Weber
  2016-05-19 12:45 ` [Buildroot] [PATCH v3 2/2] igmpproxy: bump version to a731683d1a65956fa05024b0597b105fe6a3a122 Matt Weber
  2016-05-19 12:55 ` [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream Baruch Siach
@ 2016-05-19 14:03 ` Thomas Petazzoni
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2016-05-19 14:03 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 19 May 2016 07:45:24 -0500, Matt Weber wrote:
> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
> --
> v2 -> v3
>  - Upstream version bump now contains this feature

Doesn't this patch depends on PATCH 2/2 being applied?

If so, they should be a single patch, otherwise if I apply only this
patch, the build is broken.

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 v3 1/2] igmpproxy: uclinux support merged upstream
  2016-05-19 12:55 ` [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream Baruch Siach
@ 2016-05-19 14:22   ` Matthew Weber
  0 siblings, 0 replies; 5+ messages in thread
From: Matthew Weber @ 2016-05-19 14:22 UTC (permalink / raw)
  To: buildroot

Baruch,

On Thu, May 19, 2016 at 7:55 AM, Baruch Siach <baruch@tkos.co.il> wrote:

> Hi Matthew,
>
> On Thu, May 19, 2016 at 07:45:24AM -0500, Matt Weber wrote:
> > Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
> > --
> > v2 -> v3
> >  - Upstream version bump now contains this feature
>
> Then both patches should be squashed into one.
>
>
Sure.

-Matt
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20160519/3c39e5b2/attachment.html>

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

end of thread, other threads:[~2016-05-19 14:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-19 12:45 [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream Matt Weber
2016-05-19 12:45 ` [Buildroot] [PATCH v3 2/2] igmpproxy: bump version to a731683d1a65956fa05024b0597b105fe6a3a122 Matt Weber
2016-05-19 12:55 ` [Buildroot] [PATCH v3 1/2] igmpproxy: uclinux support merged upstream Baruch Siach
2016-05-19 14:22   ` Matthew Weber
2016-05-19 14:03 ` Thomas Petazzoni

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