All of lore.kernel.org
 help / color / mirror / Atom feed
From: Saul Wold <sgw@linux.intel.com>
To: Koen Kooi <koen@dominion.thruhere.net>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [for-denzil][PATCH 2/5] xz: update to 5.1.2alpha
Date: Thu, 19 Jul 2012 00:30:50 -0700	[thread overview]
Message-ID: <5007B7AA.5060102@linux.intel.com> (raw)
In-Reply-To: <1342680286-12886-2-git-send-email-koen@dominion.thruhere.net>

On 07/18/2012 11:44 PM, Koen Kooi wrote:
> This contains bugfixes from the 5.0.3 and 5.0.4 releases
>
Koen,

Normally package updates are not part of minor releases, can you provide 
additional justification why this update should be included in a minor 
release?  You mention bugfixes, is there a specific bug that affects the 
compression operation in 1.1?

Sau!

> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
>   meta/recipes-extended/xz/xz_5.1.1alpha.bb |   28 ----------------------------
>   meta/recipes-extended/xz/xz_5.1.2alpha.bb |   25 +++++++++++++++++++++++++
>   2 files changed, 25 insertions(+), 28 deletions(-)
>   delete mode 100644 meta/recipes-extended/xz/xz_5.1.1alpha.bb
>   create mode 100644 meta/recipes-extended/xz/xz_5.1.2alpha.bb
>
> diff --git a/meta/recipes-extended/xz/xz_5.1.1alpha.bb b/meta/recipes-extended/xz/xz_5.1.1alpha.bb
> deleted file mode 100644
> index 7fa7177..0000000
> --- a/meta/recipes-extended/xz/xz_5.1.1alpha.bb
> +++ /dev/null
> @@ -1,28 +0,0 @@
> -DESCRIPTION = "utils for managing LZMA compressed files"
> -HOMEPAGE = "http://tukaani.org/xz/"
> -SECTION = "base"
> -
> -LICENSE = "GPLv2+ & GPLv3+ & LGPLv2.1+"
> -LIC_FILES_CHKSUM = "file://COPYING;md5=c475b6c7dca236740ace4bba553e8e1c \
> -                    file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> -                    file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \
> -                    file://COPYING.LGPLv2.1;md5=4fbd65380cdd255951079008b364516c \
> -                    file://lib/getopt.c;endline=23;md5=2069b0ee710572c03bb3114e4532cd84 "
> -
> -SRC_URI = "http://tukaani.org/xz/xz-${PV}.tar.gz"
> -
> -SRC_URI[md5sum] = "bb24436fa12780808e1c142980484104"
> -SRC_URI[sha256sum] = "54e59a83690a4a0ec88a7d7c3bdef90c6b196c892a93463863c71c24fe87951a"
> -
> -PR = "r0"
> -
> -inherit autotools gettext
> -
> -PACKAGES =+ "liblzma liblzma-dev liblzma-staticdev liblzma-dbg"
> -
> -FILES_liblzma = "${libdir}/liblzma*${SOLIBS}"
> -FILES_liblzma-dev = "${includedir}/lzma* ${libdir}/liblzma*${SOLIBSDEV} ${libdir}/liblzma.la ${libdir}/pkgconfig/liblzma.pc"
> -FILES_liblzma-staticdev = "${libdir}/liblzma.a"
> -FILES_liblzma-dbg = "${libdir}/.debug/liblzma*"
> -
> -BBCLASSEXTEND = "native"
> diff --git a/meta/recipes-extended/xz/xz_5.1.2alpha.bb b/meta/recipes-extended/xz/xz_5.1.2alpha.bb
> new file mode 100644
> index 0000000..9d68720
> --- /dev/null
> +++ b/meta/recipes-extended/xz/xz_5.1.2alpha.bb
> @@ -0,0 +1,25 @@
> +DESCRIPTION = "utils for managing LZMA compressed files"
> +HOMEPAGE = "http://tukaani.org/xz/"
> +SECTION = "base"
> +
> +LICENSE = "GPLv2+ & GPLv3+ & LGPLv2.1+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=c475b6c7dca236740ace4bba553e8e1c \
> +                    file://COPYING.GPLv2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> +                    file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \
> +                    file://COPYING.LGPLv2.1;md5=4fbd65380cdd255951079008b364516c \
> +                    file://lib/getopt.c;endline=23;md5=2069b0ee710572c03bb3114e4532cd84 "
> +
> +SRC_URI = "http://tukaani.org/xz/xz-${PV}.tar.gz"
> +SRC_URI[md5sum] = "9bad1e249537ce69b206815cf28ca87b"
> +SRC_URI[sha256sum] = "70e792d2a67cfbb8f2dffd0feab6ca6e5a4a618d65070fb44a367629d1ba94e5"
> +
> +inherit autotools gettext
> +
> +PACKAGES =+ "liblzma liblzma-dev liblzma-staticdev liblzma-dbg"
> +
> +FILES_liblzma = "${libdir}/liblzma*${SOLIBS}"
> +FILES_liblzma-dev = "${includedir}/lzma* ${libdir}/liblzma*${SOLIBSDEV} ${libdir}/liblzma.la ${libdir}/pkgconfig/liblzma.pc"
> +FILES_liblzma-staticdev = "${libdir}/liblzma.a"
> +FILES_liblzma-dbg = "${libdir}/.debug/liblzma*"
> +
> +BBCLASSEXTEND = "native"
>




  reply	other threads:[~2012-07-19  7:42 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-19  6:44 [for-denzil][PATCH 1/5] xz: updated to version 5.1.1alpha Koen Kooi
2012-07-19  6:44 ` [for-denzil][PATCH 2/5] xz: update to 5.1.2alpha Koen Kooi
2012-07-19  7:30   ` Saul Wold [this message]
2012-07-19  6:44 ` [for-denzil][PATCH 3/5] image_types.bbclass: Fix COMPRESS_CMD for xz to redirect compressed data to file Koen Kooi
2012-07-19  6:44 ` [for-denzil][PATCH 4/5] image_types.bbclass: Add XZ variable to set number of threads to be used while compressing Koen Kooi
2012-07-19  6:44 ` [for-denzil][PATCH 5/5] image_types.bbclass: Default XZ_COMPRESSION_LEVEL to -e -6 Koen Kooi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5007B7AA.5060102@linux.intel.com \
    --to=sgw@linux.intel.com \
    --cc=koen@dominion.thruhere.net \
    --cc=openembedded-core@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.