From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dan.rpsys.net (5751f4a1.skybroadband.com [87.81.244.161]) by mail.openembedded.org (Postfix) with ESMTP id 0C67373216 for ; Fri, 8 Jan 2016 18:22:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id u08IMqfY016805 for ; Fri, 8 Jan 2016 18:22:52 GMT Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 7c1ssBw6G5Yi for ; Fri, 8 Jan 2016 18:22:52 +0000 (GMT) Received: from hex ([192.168.3.34]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id u08IMnrv016800 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NOT) for ; Fri, 8 Jan 2016 18:22:50 GMT Message-ID: <1452277369.7598.136.camel@linuxfoundation.org> From: Richard Purdie To: openembedded-core Date: Fri, 08 Jan 2016 18:22:49 +0000 X-Mailer: Evolution 3.16.5-1ubuntu3.1 Mime-Version: 1.0 Subject: [PATCH] pixz: Add 1.0.6 X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Jan 2016 18:22:52 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit xz gives better compression results than bzip/gz but is often slower. Using parallel compression mitigates this somewhat and is particularly useful for the SDK. Signed-off-by: Richard Purdie diff --git a/meta/recipes-support/pixz/pixz_1.0.6.bb b/meta/recipes-support/pixz/pixz_1.0.6.bb new file mode 100644 index 0000000..e6e4ac2 --- /dev/null +++ b/meta/recipes-support/pixz/pixz_1.0.6.bb @@ -0,0 +1,14 @@ +SUMMARY = "Parallel, indexed xz compressor" + +DEPENDS = "xz libarchive" + +SRC_URI = "https://github.com/vasi/pixz/releases/download/v${PV}/${BPN}-${PV}.tar.xz" +SRC_URI[md5sum] = "f6dc5909c9a31b192f69aa397ae8df48" +SRC_URI[sha256sum] = "02c50746b134fa1b1aae41fcc314d7c6f1919b3d48bcdea01bf11769f83f72e8" + +LICENSE = "BSD-2-Clause" +LIC_FILES_CHKSUM = "file://LICENSE;md5=5cf6d164086105f1512ccb81bfff1926" + +inherit autotools + +BBCLASSEXTEND = "native"