All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pigz: bump to 2.3.1
@ 2013-10-21 12:58 maxin.john
  2013-10-21 22:52 ` Khem Raj
  0 siblings, 1 reply; 4+ messages in thread
From: maxin.john @ 2013-10-21 12:58 UTC (permalink / raw)
  To: openembedded-core; +Cc: Maxin B. John

From: "Maxin B. John" <maxin.john@enea.com>

Update pigz to latest release - 2.3.1
Drop ldflags.patch as it has been merged upstream

Signed-off-by: Maxin B. John <maxin.john@enea.com>
---
 meta/recipes-extended/pigz/files/ldflags.patch |   19 -------------------
 meta/recipes-extended/pigz/pigz.inc            |    5 ++---
 meta/recipes-extended/pigz/pigz_2.3.1.bb       |   10 ++++++++++
 meta/recipes-extended/pigz/pigz_2.3.bb         |   10 ----------
 4 files changed, 12 insertions(+), 32 deletions(-)
 delete mode 100644 meta/recipes-extended/pigz/files/ldflags.patch
 create mode 100644 meta/recipes-extended/pigz/pigz_2.3.1.bb
 delete mode 100644 meta/recipes-extended/pigz/pigz_2.3.bb

diff --git a/meta/recipes-extended/pigz/files/ldflags.patch b/meta/recipes-extended/pigz/files/ldflags.patch
deleted file mode 100644
index 8e531cc..0000000
--- a/meta/recipes-extended/pigz/files/ldflags.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Link using the bitbake LDFLAGS.
-
-Signed-off-by: Björn Stenberg <bjst@enea.com>
-
-Upstream-Status: Pending
-
-Index: pigz-2.3/Makefile
-===================================================================
---- pigz-2.3.orig/Makefile
-+++ pigz-2.3/Makefile
-@@ -3,7 +3,7 @@ CFLAGS=-O3 -Wall -Wextra
- 
- 
- pigz: pigz.o yarn.o zopfli/deflate.o zopfli/blocksplitter.o zopfli/tree.o zopfli/lz77.o zopfli/cache.o zopfli/hash.o zopfli/util.o zopfli/squeeze.o zopfli/katajainen.o
--	$(CC) -o pigz $^ -lpthread -lz
-+	$(CC) ${LDFLAGS} -o pigz $^ -lpthread -lz -lm
- 	ln -f pigz unpigz
- 
- pigz.o: pigz.c yarn.h zopfli/deflate.h zopfli/util.h
diff --git a/meta/recipes-extended/pigz/pigz.inc b/meta/recipes-extended/pigz/pigz.inc
index 5ceaef2..984f9ea 100644
--- a/meta/recipes-extended/pigz/pigz.inc
+++ b/meta/recipes-extended/pigz/pigz.inc
@@ -7,10 +7,9 @@ HOMEPAGE = "http://zlib.net/pigz/"
 SECTION = "console/utils"
 LICENSE = "Zlib"
 
-PR = "r1"
+PR = "r0"
 
-SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz \
-           file://ldflags.patch"
+SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz"
 
 PROVIDES_class-native += "gzip-native"
 
diff --git a/meta/recipes-extended/pigz/pigz_2.3.1.bb b/meta/recipes-extended/pigz/pigz_2.3.1.bb
new file mode 100644
index 0000000..6e7c7f1
--- /dev/null
+++ b/meta/recipes-extended/pigz/pigz_2.3.1.bb
@@ -0,0 +1,10 @@
+require pigz.inc
+LIC_FILES_CHKSUM = "file://pigz.c;beginline=7;endline=21;md5=a21d4075cb00ab4ca17fce5e7534ca95"
+
+SRC_URI[md5sum] = "e803f8bc0770c7a5e96dccb1d2dd2aab"
+SRC_URI[sha256sum] = "629b0ce5422a3978f31742bf8275d0be2f84987140d18f390f1e3b4e46e0af54"
+
+NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
+
+BBCLASSEXTEND = "native"
+
diff --git a/meta/recipes-extended/pigz/pigz_2.3.bb b/meta/recipes-extended/pigz/pigz_2.3.bb
deleted file mode 100644
index 724d00b..0000000
--- a/meta/recipes-extended/pigz/pigz_2.3.bb
+++ /dev/null
@@ -1,10 +0,0 @@
-require pigz.inc
-LIC_FILES_CHKSUM = "file://pigz.c;beginline=7;endline=21;md5=a21d4075cb00ab4ca17fce5e7534ca95"
-
-SRC_URI[md5sum] = "042e3322534f2c3d761736350cac303f"
-SRC_URI[sha256sum] = "74bbd5962f9420549fc987ddd1ccda692ec2b29d2d612fbbe26edf3fa348ff21"
-
-NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
-
-BBCLASSEXTEND = "native"
-
-- 
1.7.10.4



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

* Re: [PATCH] pigz: bump to 2.3.1
  2013-10-21 12:58 [PATCH] pigz: bump to 2.3.1 maxin.john
@ 2013-10-21 22:52 ` Khem Raj
  2013-10-24 10:00   ` Saul Wold
  0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2013-10-21 22:52 UTC (permalink / raw)
  To: maxin.john; +Cc: openembedded-core

[-- Attachment #1: Type: text/plain, Size: 3863 bytes --]

On Monday, October 21, 2013,  <maxin.john@enea.com> wrote:
> From: "Maxin B. John" <maxin.john@enea.com>
>
> Update pigz to latest release - 2.3.1
> Drop ldflags.patch as it has been merged upstream
>
> Signed-off-by: Maxin B. John <maxin.john@enea.com>
> ---
looks ok althouh
git format-patch -M would have detected renaming a bit better inturn making
it easier to review it

>  meta/recipes-extended/pigz/files/ldflags.patch |   19 -------------------
>  meta/recipes-extended/pigz/pigz.inc            |    5 ++---
>  meta/recipes-extended/pigz/pigz_2.3.1.bb       |   10 ++++++++++
>  meta/recipes-extended/pigz/pigz_2.3.bb         |   10 ----------
>  4 files changed, 12 insertions(+), 32 deletions(-)
>  delete mode 100644 meta/recipes-extended/pigz/files/ldflags.patch
>  create mode 100644 meta/recipes-extended/pigz/pigz_2.3.1.bb
>  delete mode 100644 meta/recipes-extended/pigz/pigz_2.3.bb
>
> diff --git a/meta/recipes-extended/pigz/files/ldflags.patch
b/meta/recipes-extended/pigz/files/ldflags.patch
> deleted file mode 100644
> index 8e531cc..0000000
> --- a/meta/recipes-extended/pigz/files/ldflags.patch
> +++ /dev/null
> @@ -1,19 +0,0 @@
> -Link using the bitbake LDFLAGS.
> -
> -Signed-off-by: Björn Stenberg <bjst@enea.com>
> -
> -Upstream-Status: Pending
> -
> -Index: pigz-2.3/Makefile
> -===================================================================
> ---- pigz-2.3.orig/Makefile
> -+++ pigz-2.3/Makefile
> -@@ -3,7 +3,7 @@ CFLAGS=-O3 -Wall -Wextra
> -
> -
> - pigz: pigz.o yarn.o zopfli/deflate.o zopfli/blocksplitter.o
zopfli/tree.o zopfli/lz77.o zopfli/cache.o zopfli/hash.o zopfli/util.o
zopfli/squeeze.o zopfli/katajainen.o
> --      $(CC) -o pigz $^ -lpthread -lz
> -+      $(CC) ${LDFLAGS} -o pigz $^ -lpthread -lz -lm
> -       ln -f pigz unpigz
> -
> - pigz.o: pigz.c yarn.h zopfli/deflate.h zopfli/util.h
> diff --git a/meta/recipes-extended/pigz/pigz.inc
b/meta/recipes-extended/pigz/pigz.inc
> index 5ceaef2..984f9ea 100644
> --- a/meta/recipes-extended/pigz/pigz.inc
> +++ b/meta/recipes-extended/pigz/pigz.inc
> @@ -7,10 +7,9 @@ HOMEPAGE = "http://zlib.net/pigz/"
>  SECTION = "console/utils"
>  LICENSE = "Zlib"
>
> -PR = "r1"
> +PR = "r0"
>
> -SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz \
> -           file://ldflags.patch"
> +SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz"
>
>  PROVIDES_class-native += "gzip-native"
>
> diff --git a/meta/recipes-extended/pigz/pigz_2.3.1.bbb/meta/recipes-extended/pigz/
pigz_2.3.1.bb
> new file mode 100644
> index 0000000..6e7c7f1
> --- /dev/null
> +++ b/meta/recipes-extended/pigz/pigz_2.3.1.bb
> @@ -0,0 +1,10 @@
> +require pigz.inc
> +LIC_FILES_CHKSUM =
"file://pigz.c;beginline=7;endline=21;md5=a21d4075cb00ab4ca17fce5e7534ca95"
> +
> +SRC_URI[md5sum] = "e803f8bc0770c7a5e96dccb1d2dd2aab"
> +SRC_URI[sha256sum] =
"629b0ce5422a3978f31742bf8275d0be2f84987140d18f390f1e3b4e46e0af54"
> +
> +NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
> +
> +BBCLASSEXTEND = "native"
> +
> diff --git a/meta/recipes-extended/pigz/pigz_2.3.bbb/meta/recipes-extended/pigz/
pigz_2.3.bb
> deleted file mode 100644
> index 724d00b..0000000
> --- a/meta/recipes-extended/pigz/pigz_2.3.bb
> +++ /dev/null
> @@ -1,10 +0,0 @@
> -require pigz.inc
> -LIC_FILES_CHKSUM =
"file://pigz.c;beginline=7;endline=21;md5=a21d4075cb00ab4ca17fce5e7534ca95"
> -
> -SRC_URI[md5sum] = "042e3322534f2c3d761736350cac303f"
> -SRC_URI[sha256sum] =
"74bbd5962f9420549fc987ddd1ccda692ec2b29d2d612fbbe26edf3fa348ff21"
> -
> -NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
> -
> -BBCLASSEXTEND = "native"
> -
> --
> 1.7.10.4
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>

[-- Attachment #2: Type: text/html, Size: 5437 bytes --]

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

* Re: [PATCH] pigz: bump to 2.3.1
  2013-10-21 22:52 ` Khem Raj
@ 2013-10-24 10:00   ` Saul Wold
  2013-10-24 11:40     ` [PATCH v2] " maxin.john
  0 siblings, 1 reply; 4+ messages in thread
From: Saul Wold @ 2013-10-24 10:00 UTC (permalink / raw)
  To: Khem Raj, maxin.john; +Cc: openembedded-core

On 10/21/2013 03:52 PM, Khem Raj wrote:
>
>
> On Monday, October 21, 2013,  <maxin.john@enea.com
> <mailto:maxin.john@enea.com>> wrote:
>  > From: "Maxin B. John" <maxin.john@enea.com <mailto:maxin.john@enea.com>>
>  >
>  > Update pigz to latest release - 2.3.1
>  > Drop ldflags.patch as it has been merged upstream
>  >
>  > Signed-off-by: Maxin B. John <maxin.john@enea.com
> <mailto:maxin.john@enea.com>>
>  > ---
> looks ok althouh
> git format-patch -M would have detected renaming a bit better inturn
> making it easier to review it
>
>  >  meta/recipes-extended/pigz/files/ldflags.patch |   19
> -------------------
>  >  meta/recipes-extended/pigz/pigz.inc            |    5 ++---
>  >  meta/recipes-extended/pigz/pigz_2.3.1.bb <http://pigz_2.3.1.bb>
>    |   10 ++++++++++
>  >  meta/recipes-extended/pigz/pigz_2.3.bb <http://pigz_2.3.bb>
> |   10 ----------
>  >  4 files changed, 12 insertions(+), 32 deletions(-)
>  >  delete mode 100644 meta/recipes-extended/pigz/files/ldflags.patch
>  >  create mode 100644 meta/recipes-extended/pigz/pigz_2.3.1.bb
> <http://pigz_2.3.1.bb>
>  >  delete mode 100644 meta/recipes-extended/pigz/pigz_2.3.bb
> <http://pigz_2.3.bb>
>  >
>  > diff --git a/meta/recipes-extended/pigz/files/ldflags.patch
> b/meta/recipes-extended/pigz/files/ldflags.patch
>  > deleted file mode 100644
>  > index 8e531cc..0000000
>  > --- a/meta/recipes-extended/pigz/files/ldflags.patch
>  > +++ /dev/null
>  > @@ -1,19 +0,0 @@
>  > -Link using the bitbake LDFLAGS.
>  > -
>  > -Signed-off-by: Björn Stenberg <bjst@enea.com <mailto:bjst@enea.com>>
>  > -
>  > -Upstream-Status: Pending
>  > -
>  > -Index: pigz-2.3/Makefile
>  > -===================================================================
>  > ---- pigz-2.3.orig/Makefile
>  > -+++ pigz-2.3/Makefile
>  > -@@ -3,7 +3,7 @@ CFLAGS=-O3 -Wall -Wextra
>  > -
>  > -
>  > - pigz: pigz.o yarn.o zopfli/deflate.o zopfli/blocksplitter.o
> zopfli/tree.o zopfli/lz77.o zopfli/cache.o zopfli/hash.o zopfli/util.o
> zopfli/squeeze.o zopfli/katajainen.o
>  > --      $(CC) -o pigz $^ -lpthread -lz
>  > -+      $(CC) ${LDFLAGS} -o pigz $^ -lpthread -lz -lm
>  > -       ln -f pigz unpigz
>  > -
>  > - pigz.o: pigz.c yarn.h zopfli/deflate.h zopfli/util.h
>  > diff --git a/meta/recipes-extended/pigz/pigz.inc
> b/meta/recipes-extended/pigz/pigz.inc
>  > index 5ceaef2..984f9ea 100644
>  > --- a/meta/recipes-extended/pigz/pigz.inc
>  > +++ b/meta/recipes-extended/pigz/pigz.inc
>  > @@ -7,10 +7,9 @@ HOMEPAGE = "http://zlib.net/pigz/"
>  >  SECTION = "console/utils"
>  >  LICENSE = "Zlib"
>  >
>  > -PR = "r1"
>  > +PR = "r0"
>  >
Beyond Khem's comment above, the PR field is not required anymore so it 
can just be removed.

Thanks
	Sau!

>  > -SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz \
>  > -           file://ldflags.patch"
>  > +SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz"
>  >
>  >  PROVIDES_class-native += "gzip-native"
>  >
>  > diff --git a/meta/recipes-extended/pigz/pigz_2.3.1.bb
> <http://pigz_2.3.1.bb> b/meta/recipes-extended/pigz/pigz_2.3.1.bb
> <http://pigz_2.3.1.bb>
>  > new file mode 100644
>  > index 0000000..6e7c7f1
>  > --- /dev/null
>  > +++ b/meta/recipes-extended/pigz/pigz_2.3.1.bb <http://pigz_2.3.1.bb>
>  > @@ -0,0 +1,10 @@
>  > +require pigz.inc
>  > +LIC_FILES_CHKSUM =
> "file://pigz.c;beginline=7;endline=21;md5=a21d4075cb00ab4ca17fce5e7534ca95"
>  > +
>  > +SRC_URI[md5sum] = "e803f8bc0770c7a5e96dccb1d2dd2aab"
>  > +SRC_URI[sha256sum] =
> "629b0ce5422a3978f31742bf8275d0be2f84987140d18f390f1e3b4e46e0af54"
>  > +
>  > +NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
>  > +
>  > +BBCLASSEXTEND = "native"
>  > +
>  > diff --git a/meta/recipes-extended/pigz/pigz_2.3.bb
> <http://pigz_2.3.bb> b/meta/recipes-extended/pigz/pigz_2.3.bb
> <http://pigz_2.3.bb>
>  > deleted file mode 100644
>  > index 724d00b..0000000
>  > --- a/meta/recipes-extended/pigz/pigz_2.3.bb <http://pigz_2.3.bb>
>  > +++ /dev/null
>  > @@ -1,10 +0,0 @@
>  > -require pigz.inc
>  > -LIC_FILES_CHKSUM =
> "file://pigz.c;beginline=7;endline=21;md5=a21d4075cb00ab4ca17fce5e7534ca95"
>  > -
>  > -SRC_URI[md5sum] = "042e3322534f2c3d761736350cac303f"
>  > -SRC_URI[sha256sum] =
> "74bbd5962f9420549fc987ddd1ccda692ec2b29d2d612fbbe26edf3fa348ff21"
>  > -
>  > -NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
>  > -
>  > -BBCLASSEXTEND = "native"
>  > -
>  > --
>  > 1.7.10.4
>  >
>  > _______________________________________________
>  > Openembedded-core mailing list
>  > Openembedded-core@lists.openembedded.org
> <mailto:Openembedded-core@lists.openembedded.org>
>  > http://lists.openembedded.org/mailman/listinfo/openembedded-core
>  >
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
>


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

* [PATCH v2] pigz: bump to 2.3.1
  2013-10-24 10:00   ` Saul Wold
@ 2013-10-24 11:40     ` maxin.john
  0 siblings, 0 replies; 4+ messages in thread
From: maxin.john @ 2013-10-24 11:40 UTC (permalink / raw)
  To: raj.khem, sgw; +Cc: Maxin B. John, openembedded-core

From: "Maxin B. John" <maxin.john@enea.com>

Update pigz to latest release - 2.3.1
Drop ldflags.patch as it has been merged upstream

Signed-off-by: Maxin B. John <maxin.john@enea.com>
---
 meta/recipes-extended/pigz/files/ldflags.patch      |   19 -------------------
 meta/recipes-extended/pigz/pigz.inc                 |    6 +-----
 .../pigz/{pigz_2.3.bb => pigz_2.3.1.bb}             |    4 ++--
 3 files changed, 3 insertions(+), 26 deletions(-)
 delete mode 100644 meta/recipes-extended/pigz/files/ldflags.patch
 rename meta/recipes-extended/pigz/{pigz_2.3.bb => pigz_2.3.1.bb} (55%)

diff --git a/meta/recipes-extended/pigz/files/ldflags.patch b/meta/recipes-extended/pigz/files/ldflags.patch
deleted file mode 100644
index 8e531cc..0000000
--- a/meta/recipes-extended/pigz/files/ldflags.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Link using the bitbake LDFLAGS.
-
-Signed-off-by: Björn Stenberg <bjst@enea.com>
-
-Upstream-Status: Pending
-
-Index: pigz-2.3/Makefile
-===================================================================
---- pigz-2.3.orig/Makefile
-+++ pigz-2.3/Makefile
-@@ -3,7 +3,7 @@ CFLAGS=-O3 -Wall -Wextra
- 
- 
- pigz: pigz.o yarn.o zopfli/deflate.o zopfli/blocksplitter.o zopfli/tree.o zopfli/lz77.o zopfli/cache.o zopfli/hash.o zopfli/util.o zopfli/squeeze.o zopfli/katajainen.o
--	$(CC) -o pigz $^ -lpthread -lz
-+	$(CC) ${LDFLAGS} -o pigz $^ -lpthread -lz -lm
- 	ln -f pigz unpigz
- 
- pigz.o: pigz.c yarn.h zopfli/deflate.h zopfli/util.h
diff --git a/meta/recipes-extended/pigz/pigz.inc b/meta/recipes-extended/pigz/pigz.inc
index 5ceaef2..355fb2a 100644
--- a/meta/recipes-extended/pigz/pigz.inc
+++ b/meta/recipes-extended/pigz/pigz.inc
@@ -7,10 +7,7 @@ HOMEPAGE = "http://zlib.net/pigz/"
 SECTION = "console/utils"
 LICENSE = "Zlib"
 
-PR = "r1"
-
-SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz \
-           file://ldflags.patch"
+SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz"
 
 PROVIDES_class-native += "gzip-native"
 
@@ -33,4 +30,3 @@ ALTERNATIVE_${PN} = "gzip gunzip"
 ALTERNATIVE_LINK_NAME[gzip] = "${base_bindir}/gzip"
 ALTERNATIVE_LINK_NAME[gunzip] = "${base_bindir}/gunzip"
 ALTERNATIVE_PRIORITY = "80"
-
diff --git a/meta/recipes-extended/pigz/pigz_2.3.bb b/meta/recipes-extended/pigz/pigz_2.3.1.bb
similarity index 55%
rename from meta/recipes-extended/pigz/pigz_2.3.bb
rename to meta/recipes-extended/pigz/pigz_2.3.1.bb
index 724d00b..6e7c7f1 100644
--- a/meta/recipes-extended/pigz/pigz_2.3.bb
+++ b/meta/recipes-extended/pigz/pigz_2.3.1.bb
@@ -1,8 +1,8 @@
 require pigz.inc
 LIC_FILES_CHKSUM = "file://pigz.c;beginline=7;endline=21;md5=a21d4075cb00ab4ca17fce5e7534ca95"
 
-SRC_URI[md5sum] = "042e3322534f2c3d761736350cac303f"
-SRC_URI[sha256sum] = "74bbd5962f9420549fc987ddd1ccda692ec2b29d2d612fbbe26edf3fa348ff21"
+SRC_URI[md5sum] = "e803f8bc0770c7a5e96dccb1d2dd2aab"
+SRC_URI[sha256sum] = "629b0ce5422a3978f31742bf8275d0be2f84987140d18f390f1e3b4e46e0af54"
 
 NATIVE_PACKAGE_PATH_SUFFIX = "/${PN}"
 
-- 
1.7.10.4



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

end of thread, other threads:[~2013-10-24 11:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-21 12:58 [PATCH] pigz: bump to 2.3.1 maxin.john
2013-10-21 22:52 ` Khem Raj
2013-10-24 10:00   ` Saul Wold
2013-10-24 11:40     ` [PATCH v2] " maxin.john

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.