public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [PATCH 1/3] xorg-lib-common: Add variable to set tarball type
@ 2022-09-04 18:53 Robert Joslyn
  2022-09-04 18:53 ` [PATCH 2/3] libxfont2: Update 2.0.5 to 2.0.6 Robert Joslyn
  2022-09-04 18:53 ` [PATCH 3/3] libxau: Update 1.0.9 to 1.0.10 Robert Joslyn
  0 siblings, 2 replies; 3+ messages in thread
From: Robert Joslyn @ 2022-09-04 18:53 UTC (permalink / raw)
  To: openembedded-core; +Cc: Robert Joslyn

Upstream has switched some new releases from bz2 to xz compression. Add
an XORG_EXT variable so recipes can set the file name extension needed
for the compression type.

Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org>
---
 meta/recipes-graphics/xorg-lib/xorg-lib-common.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc b/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc
index 60bc8c76fa..68137c4147 100644
--- a/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc
+++ b/meta/recipes-graphics/xorg-lib/xorg-lib-common.inc
@@ -6,8 +6,9 @@ LICENSE = "MIT"
 DEPENDS = "util-macros"
 
 XORG_PN = "${BPN}"
+XORG_EXT ?= "tar.bz2"
 
-SRC_URI = "${XORG_MIRROR}/individual/lib/${XORG_PN}-${PV}.tar.bz2"
+SRC_URI = "${XORG_MIRROR}/individual/lib/${XORG_PN}-${PV}.${XORG_EXT}"
 
 S = "${WORKDIR}/${XORG_PN}-${PV}"
 
-- 
2.35.1



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

* [PATCH 2/3] libxfont2: Update 2.0.5 to 2.0.6
  2022-09-04 18:53 [PATCH 1/3] xorg-lib-common: Add variable to set tarball type Robert Joslyn
@ 2022-09-04 18:53 ` Robert Joslyn
  2022-09-04 18:53 ` [PATCH 3/3] libxau: Update 1.0.9 to 1.0.10 Robert Joslyn
  1 sibling, 0 replies; 3+ messages in thread
From: Robert Joslyn @ 2022-09-04 18:53 UTC (permalink / raw)
  To: openembedded-core; +Cc: Robert Joslyn

Tarball switched from bz2 to xz.

Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org>
---
 .../xorg-lib/{libxfont2_2.0.5.bb => libxfont2_2.0.6.bb}        | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
 rename meta/recipes-graphics/xorg-lib/{libxfont2_2.0.5.bb => libxfont2_2.0.6.bb} (85%)

diff --git a/meta/recipes-graphics/xorg-lib/libxfont2_2.0.5.bb b/meta/recipes-graphics/xorg-lib/libxfont2_2.0.6.bb
similarity index 85%
rename from meta/recipes-graphics/xorg-lib/libxfont2_2.0.5.bb
rename to meta/recipes-graphics/xorg-lib/libxfont2_2.0.6.bb
index 10e44c39ba..59d63e7150 100644
--- a/meta/recipes-graphics/xorg-lib/libxfont2_2.0.5.bb
+++ b/meta/recipes-graphics/xorg-lib/libxfont2_2.0.6.bb
@@ -12,10 +12,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a46c8040f2f737bcd0c435feb2ab1c2c"
 DEPENDS += "freetype xtrans xorgproto libfontenc zlib"
 
 XORG_PN = "libXfont2"
+XORG_EXT = "tar.xz"
 
 BBCLASSEXTEND = "native"
 
-SRC_URI[sha256sum] = "aa7c6f211cf7215c0ab4819ed893dc98034363d7b930b844bb43603c2e10b53e"
+SRC_URI[sha256sum] = "74ca20017eb0fb3f56d8d5e60685f560fc85e5ff3d84c61c4cb891e40c27aef4"
 
 PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)}"
 PACKAGECONFIG[ipv6] = "--enable-ipv6,--disable-ipv6,"
-- 
2.35.1



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

* [PATCH 3/3] libxau: Update 1.0.9 to 1.0.10
  2022-09-04 18:53 [PATCH 1/3] xorg-lib-common: Add variable to set tarball type Robert Joslyn
  2022-09-04 18:53 ` [PATCH 2/3] libxfont2: Update 2.0.5 to 2.0.6 Robert Joslyn
@ 2022-09-04 18:53 ` Robert Joslyn
  1 sibling, 0 replies; 3+ messages in thread
From: Robert Joslyn @ 2022-09-04 18:53 UTC (permalink / raw)
  To: openembedded-core; +Cc: Robert Joslyn

Tarball switched from bz2 to xz.

Signed-off-by: Robert Joslyn <robert.joslyn@redrectangle.org>
---
 .../xorg-lib/{libxau_1.0.9.bb => libxau_1.0.10.bb}            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-graphics/xorg-lib/{libxau_1.0.9.bb => libxau_1.0.10.bb} (76%)

diff --git a/meta/recipes-graphics/xorg-lib/libxau_1.0.9.bb b/meta/recipes-graphics/xorg-lib/libxau_1.0.10.bb
similarity index 76%
rename from meta/recipes-graphics/xorg-lib/libxau_1.0.9.bb
rename to meta/recipes-graphics/xorg-lib/libxau_1.0.10.bb
index 3fbc3a5b44..a62c9f088a 100644
--- a/meta/recipes-graphics/xorg-lib/libxau_1.0.9.bb
+++ b/meta/recipes-graphics/xorg-lib/libxau_1.0.10.bb
@@ -17,8 +17,8 @@ PROVIDES = "xau"
 PE = "1"
 
 XORG_PN = "libXau"
+XORG_EXT = "tar.xz"
 
 BBCLASSEXTEND = "native nativesdk"
 
-SRC_URI[md5sum] = "c5f16288f2da9f071b29111d68797480"
-SRC_URI[sha256sum] = "ccf8cbf0dbf676faa2ea0a6d64bcc3b6746064722b606c8c52917ed00dcb73ec"
+SRC_URI[sha256sum] = "8be6f292334d2f87e5b919c001e149a9fdc27005d6b3e053862ac6ebbf1a0c0a"
-- 
2.35.1



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

end of thread, other threads:[~2022-09-04 18:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-04 18:53 [PATCH 1/3] xorg-lib-common: Add variable to set tarball type Robert Joslyn
2022-09-04 18:53 ` [PATCH 2/3] libxfont2: Update 2.0.5 to 2.0.6 Robert Joslyn
2022-09-04 18:53 ` [PATCH 3/3] libxau: Update 1.0.9 to 1.0.10 Robert Joslyn

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