summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-04-20 12:49:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-04 16:29:15 +0100
commitbd108838fafc7ce5982e94ff1123639697ff17f4 (patch)
tree84a2995bf4c9bc787b5f7a030a5322b925106019 /meta
parent398b1256fe05f6c9bda3ada1afb53e67375141d8 (diff)
downloadpoky-bd108838fafc7ce5982e94ff1123639697ff17f4.tar.gz
xorg-app: Tweak handling of compression changes in SRC_URI
Rather than duplicating SRC_URI, change the compression to a variable. (From OE-Core rev: 5f3d70970746ee6d9ad68f16419a016331b45df4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 21547dd5319f27a8f7f20a80e39478f816b4bbe0) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-graphics/xorg-app/mkfontscale_1.2.2.bb3
-rw-r--r--meta/recipes-graphics/xorg-app/xdpyinfo_1.3.3.bb3
-rw-r--r--meta/recipes-graphics/xorg-app/xorg-app-common.inc3
-rw-r--r--meta/recipes-graphics/xorg-app/xrandr_1.5.1.bb3
4 files changed, 5 insertions, 7 deletions
diff --git a/meta/recipes-graphics/xorg-app/mkfontscale_1.2.2.bb b/meta/recipes-graphics/xorg-app/mkfontscale_1.2.2.bb
index 573b05128e..cd658ab219 100644
--- a/meta/recipes-graphics/xorg-app/mkfontscale_1.2.2.bb
+++ b/meta/recipes-graphics/xorg-app/mkfontscale_1.2.2.bb
@@ -15,8 +15,7 @@ RPROVIDES:${PN} += "mkfontdir"
15 15
16BBCLASSEXTEND = "native" 16BBCLASSEXTEND = "native"
17 17
18SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.xz"
19
20LIC_FILES_CHKSUM = "file://COPYING;md5=99b1e1269aba5179139b9e4380fc0934" 18LIC_FILES_CHKSUM = "file://COPYING;md5=99b1e1269aba5179139b9e4380fc0934"
21 19
20SRC_URI_EXT = "xz"
22SRC_URI[sha256sum] = "8ae3fb5b1fe7436e1f565060acaa3e2918fe745b0e4979b5593968914fe2d5c4" 21SRC_URI[sha256sum] = "8ae3fb5b1fe7436e1f565060acaa3e2918fe745b0e4979b5593968914fe2d5c4"
diff --git a/meta/recipes-graphics/xorg-app/xdpyinfo_1.3.3.bb b/meta/recipes-graphics/xorg-app/xdpyinfo_1.3.3.bb
index fa0fe36451..e75a840b7d 100644
--- a/meta/recipes-graphics/xorg-app/xdpyinfo_1.3.3.bb
+++ b/meta/recipes-graphics/xorg-app/xdpyinfo_1.3.3.bb
@@ -8,14 +8,13 @@ predefined values for various parameters used in communicating between \
8clients and the server, and the different types of screens and visuals \ 8clients and the server, and the different types of screens and visuals \
9that are available." 9that are available."
10 10
11SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.xz"
12
13LIC_FILES_CHKSUM = "file://COPYING;md5=f3d09e6b9e203a1af489e16c708f4fb3" 11LIC_FILES_CHKSUM = "file://COPYING;md5=f3d09e6b9e203a1af489e16c708f4fb3"
14DEPENDS += "libxtst libxext libxxf86vm libxi libxrender libxinerama libdmx libxau libxcomposite" 12DEPENDS += "libxtst libxext libxxf86vm libxi libxrender libxinerama libdmx libxau libxcomposite"
15PE = "1" 13PE = "1"
16 14
17SRC_URI += "file://disable-xkb.patch" 15SRC_URI += "file://disable-xkb.patch"
18 16
17SRC_URI_EXT = "xz"
19SRC_URI[sha256sum] = "356d5fd62f3e98ee36d6becf1b32d4ab6112d618339fb4b592ccffbd9e0fc206" 18SRC_URI[sha256sum] = "356d5fd62f3e98ee36d6becf1b32d4ab6112d618339fb4b592ccffbd9e0fc206"
20 19
21EXTRA_OECONF = "--disable-xkb" 20EXTRA_OECONF = "--disable-xkb"
diff --git a/meta/recipes-graphics/xorg-app/xorg-app-common.inc b/meta/recipes-graphics/xorg-app/xorg-app-common.inc
index 1c64e20aac..5dbe8abe86 100644
--- a/meta/recipes-graphics/xorg-app/xorg-app-common.inc
+++ b/meta/recipes-graphics/xorg-app/xorg-app-common.inc
@@ -8,7 +8,8 @@ DEPENDS = "util-macros-native virtual/libx11"
8# depends on virtual/libx11 8# depends on virtual/libx11
9REQUIRED_DISTRO_FEATURES = "x11" 9REQUIRED_DISTRO_FEATURES = "x11"
10 10
11SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.bz2" 11SRC_URI_EXT = "bz2"
12SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.${SRC_URI_EXT}"
12 13
13inherit autotools pkgconfig features_check 14inherit autotools pkgconfig features_check
14 15
diff --git a/meta/recipes-graphics/xorg-app/xrandr_1.5.1.bb b/meta/recipes-graphics/xorg-app/xrandr_1.5.1.bb
index 57b43ff28c..0e0347f768 100644
--- a/meta/recipes-graphics/xorg-app/xrandr_1.5.1.bb
+++ b/meta/recipes-graphics/xorg-app/xrandr_1.5.1.bb
@@ -11,8 +11,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fe1608bdb33cf8c62a4438f7d34679b3"
11DEPENDS += "libxrandr libxrender" 11DEPENDS += "libxrandr libxrender"
12PE = "1" 12PE = "1"
13 13
14SRC_URI = "${XORG_MIRROR}/individual/app/${BPN}-${PV}.tar.xz" 14SRC_URI_EXT = "xz"
15
16SRC_URI[md5sum] = "fe40f7a4fd39dd3a02248d3e0b1972e4" 15SRC_URI[md5sum] = "fe40f7a4fd39dd3a02248d3e0b1972e4"
17SRC_URI[sha256sum] = "7bc76daf9d72f8aff885efad04ce06b90488a1a169d118dea8a2b661832e8762" 16SRC_URI[sha256sum] = "7bc76daf9d72f8aff885efad04ce06b90488a1a169d118dea8a2b661832e8762"
18 17