diff options
| author | Jason Schonberg <schonm@gmail.com> | 2026-02-03 19:19:44 -0500 |
|---|---|---|
| committer | Anuj Mittal <anuj.mittal@oss.qualcomm.com> | 2026-02-09 09:35:50 +0530 |
| commit | 561e0e911f2f2772b17f5a4fe1810875f751c9d8 (patch) | |
| tree | 1227efeeb4ae4acf465072bceb60bcb03b67fa5e /meta-xfce | |
| parent | 4e1397ed49af62ef7d1e980013b0d59fd7aae238 (diff) | |
| download | meta-openembedded-561e0e911f2f2772b17f5a4fe1810875f751c9d8.tar.gz | |
Use https when accessing archive.xfce.org
While using devtool to check available versions, I noticed a 301 http error.
Specifically :
$ devtool latest-version libxfce4ui
Resolving archive.xfce.org (archive.xfce.org)... 217.70.191.87
Connecting to archive.xfce.org (archive.xfce.org)|217.70.191.87|:80... connected
.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: https://archive.xfce.org/src/xfce/libxfce4ui/4.20/ [following]
With this patch, we change to make the SRC_URI an https request.
A similar patch is already in master - commit 808916819692d4ee2a592ef25af55081d80a8021
Signed-off-by: Jason Schonberg <schonm@gmail.com>
Signed-off-by: Anuj Mittal <anuj.mittal@oss.qualcomm.com>
Diffstat (limited to 'meta-xfce')
10 files changed, 10 insertions, 10 deletions
diff --git a/meta-xfce/classes/thunar-plugin.bbclass b/meta-xfce/classes/thunar-plugin.bbclass index 3719cba219..2c80de9726 100644 --- a/meta-xfce/classes/thunar-plugin.bbclass +++ b/meta-xfce/classes/thunar-plugin.bbclass | |||
| @@ -6,7 +6,7 @@ ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" | |||
| 6 | 6 | ||
| 7 | DEPENDS += "thunar" | 7 | DEPENDS += "thunar" |
| 8 | 8 | ||
| 9 | SRC_URI = "http://archive.xfce.org/src/thunar-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2" | 9 | SRC_URI = "https://archive.xfce.org/src/thunar-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2" |
| 10 | 10 | ||
| 11 | FILES:${PN} += "${libdir}/thunarx-3/*.so" | 11 | FILES:${PN} += "${libdir}/thunarx-3/*.so" |
| 12 | 12 | ||
diff --git a/meta-xfce/classes/xfce-app.bbclass b/meta-xfce/classes/xfce-app.bbclass index d1b07d7457..d539b720a6 100644 --- a/meta-xfce/classes/xfce-app.bbclass +++ b/meta-xfce/classes/xfce-app.bbclass | |||
| @@ -2,5 +2,5 @@ inherit xfce features_check | |||
| 2 | 2 | ||
| 3 | REQUIRED_DISTRO_FEATURES = "x11" | 3 | REQUIRED_DISTRO_FEATURES = "x11" |
| 4 | 4 | ||
| 5 | SRC_URI = "http://archive.xfce.org/src/apps/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2" | 5 | SRC_URI = "https://archive.xfce.org/src/apps/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2" |
| 6 | 6 | ||
diff --git a/meta-xfce/classes/xfce-panel-plugin.bbclass b/meta-xfce/classes/xfce-panel-plugin.bbclass index b43f9e3125..9ba117a484 100644 --- a/meta-xfce/classes/xfce-panel-plugin.bbclass +++ b/meta-xfce/classes/xfce-panel-plugin.bbclass | |||
| @@ -4,7 +4,7 @@ REQUIRED_DISTRO_FEATURES = "x11" | |||
| 4 | 4 | ||
| 5 | DEPENDS += "libxfce4ui libxfce4util xfce4-panel" | 5 | DEPENDS += "libxfce4ui libxfce4util xfce4-panel" |
| 6 | 6 | ||
| 7 | SRC_URI = "http://archive.xfce.org/src/panel-plugins/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2" | 7 | SRC_URI = "https://archive.xfce.org/src/panel-plugins/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2" |
| 8 | 8 | ||
| 9 | FILES:${PN} += "${datadir}/xfce4/panel-plugins/" | 9 | FILES:${PN} += "${datadir}/xfce4/panel-plugins/" |
| 10 | FILES:${PN} += "${datadir}/xfce4/panel/plugins/" | 10 | FILES:${PN} += "${datadir}/xfce4/panel/plugins/" |
diff --git a/meta-xfce/classes/xfce.bbclass b/meta-xfce/classes/xfce.bbclass index 913202be59..79a249f92c 100644 --- a/meta-xfce/classes/xfce.bbclass +++ b/meta-xfce/classes/xfce.bbclass | |||
| @@ -4,7 +4,7 @@ def xfce_verdir(v): | |||
| 4 | return "%s.%s" % (m.group(1), m.group(2)) | 4 | return "%s.%s" % (m.group(1), m.group(2)) |
| 5 | 5 | ||
| 6 | HOMEPAGE = "http://www.xfce.org" | 6 | HOMEPAGE = "http://www.xfce.org" |
| 7 | SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2" | 7 | SRC_URI = "https://archive.xfce.org/src/xfce/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2" |
| 8 | 8 | ||
| 9 | inherit autotools gettext gtk-icon-cache pkgconfig | 9 | inherit autotools gettext gtk-icon-cache pkgconfig |
| 10 | 10 | ||
diff --git a/meta-xfce/recipes-apps/xfce4-panel-profiles/xfce4-panel-profiles_1.0.14.bb b/meta-xfce/recipes-apps/xfce4-panel-profiles/xfce4-panel-profiles_1.0.14.bb index 38f6eb6ebc..4c68f00f2b 100644 --- a/meta-xfce/recipes-apps/xfce4-panel-profiles/xfce4-panel-profiles_1.0.14.bb +++ b/meta-xfce/recipes-apps/xfce4-panel-profiles/xfce4-panel-profiles_1.0.14.bb | |||
| @@ -9,7 +9,7 @@ REQUIRED_DISTRO_FEATURES = "x11 gobject-introspection-data" | |||
| 9 | 9 | ||
| 10 | DEPENDS += "intltool-native" | 10 | DEPENDS += "intltool-native" |
| 11 | 11 | ||
| 12 | SRC_URI = "http://archive.xfce.org/src/apps/${BPN}/1.0/${BP}.tar.bz2" | 12 | SRC_URI = "https://archive.xfce.org/src/apps/${BPN}/1.0/${BP}.tar.bz2" |
| 13 | SRC_URI[sha256sum] = "6d08354e8c44d4b0370150809c1ed601d09c8b488b68986477260609a78be3f9" | 13 | SRC_URI[sha256sum] = "6d08354e8c44d4b0370150809c1ed601d09c8b488b68986477260609a78be3f9" |
| 14 | 14 | ||
| 15 | do_configure() { | 15 | do_configure() { |
diff --git a/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb b/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb index 272f83c01b..9472c6e2cf 100644 --- a/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb +++ b/meta-xfce/recipes-art/xfwm4-themes/xfwm4-themes_4.10.0.bb | |||
| @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" | |||
| 5 | 5 | ||
| 6 | inherit xfce | 6 | inherit xfce |
| 7 | 7 | ||
| 8 | SRC_URI = "http://archive.xfce.org/src/art/${BPN}/${@'${PV}'[0:4]}/${BP}.tar.bz2" | 8 | SRC_URI = "https://archive.xfce.org/src/art/${BPN}/${@'${PV}'[0:4]}/${BP}.tar.bz2" |
| 9 | SRC_URI[md5sum] = "eaa58362053a3549c8be0b32efd3c54f" | 9 | SRC_URI[md5sum] = "eaa58362053a3549c8be0b32efd3c54f" |
| 10 | SRC_URI[sha256sum] = "3214d5f00e9703b5e8c9e7c3287d606dedec7285ceb4d5db332e93ada66fd575" | 10 | SRC_URI[sha256sum] = "3214d5f00e9703b5e8c9e7c3287d606dedec7285ceb4d5db332e93ada66fd575" |
| 11 | 11 | ||
diff --git a/meta-xfce/recipes-bindings/vala/xfce4-vala_4.10.3.bb b/meta-xfce/recipes-bindings/vala/xfce4-vala_4.10.3.bb index 0a65bd94a2..b910acf64d 100644 --- a/meta-xfce/recipes-bindings/vala/xfce4-vala_4.10.3.bb +++ b/meta-xfce/recipes-bindings/vala/xfce4-vala_4.10.3.bb | |||
| @@ -8,7 +8,7 @@ inherit xfce pkgconfig features_check | |||
| 8 | REQUIRED_DISTRO_FEATURES = "x11" | 8 | REQUIRED_DISTRO_FEATURES = "x11" |
| 9 | 9 | ||
| 10 | SRC_URI = " \ | 10 | SRC_URI = " \ |
| 11 | http://archive.xfce.org/src/bindings/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2 \ | 11 | https://archive.xfce.org/src/bindings/${BPN}/${@xfce_verdir("${PV}")}/${BPN}-${PV}.tar.bz2 \ |
| 12 | file://0001-configure.ac-Detect-vapidir-if-not-set-explicitly.patch \ | 12 | file://0001-configure.ac-Detect-vapidir-if-not-set-explicitly.patch \ |
| 13 | " | 13 | " |
| 14 | SRC_URI[md5sum] = "0bbb1d6e473e0fe9b335b7b1b49d8a71" | 14 | SRC_URI[md5sum] = "0bbb1d6e473e0fe9b335b7b1b49d8a71" |
diff --git a/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.7.0.bb b/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.7.0.bb index 583aa9a006..5acc3b2508 100644 --- a/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.7.0.bb +++ b/meta-xfce/recipes-panel-plugins/diskperf/xfce4-diskperf-plugin_2.7.0.bb | |||
| @@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d3e627798d6a60bece47aa8b3532e1f1" | |||
| 5 | 5 | ||
| 6 | inherit xfce-panel-plugin | 6 | inherit xfce-panel-plugin |
| 7 | 7 | ||
| 8 | SRC_URI = "http://archive.xfce.org/src/panel-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2" | 8 | SRC_URI = "https://archive.xfce.org/src/panel-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2" |
| 9 | SRC_URI[sha256sum] = "5909a65341a6af4d7ff3c7bb87aeac91c763f69b43ae9dc4a10668ac226fecc9" | 9 | SRC_URI[sha256sum] = "5909a65341a6af4d7ff3c7bb87aeac91c763f69b43ae9dc4a10668ac226fecc9" |
diff --git a/meta-xfce/recipes-panel-plugins/netload/xfce4-netload-plugin_1.4.1.bb b/meta-xfce/recipes-panel-plugins/netload/xfce4-netload-plugin_1.4.1.bb index 6ed4747565..e39574f11a 100644 --- a/meta-xfce/recipes-panel-plugins/netload/xfce4-netload-plugin_1.4.1.bb +++ b/meta-xfce/recipes-panel-plugins/netload/xfce4-netload-plugin_1.4.1.bb | |||
| @@ -5,5 +5,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=2b6065ae7d3696cdad6869dd8627a9fe" | |||
| 5 | 5 | ||
| 6 | inherit xfce-panel-plugin | 6 | inherit xfce-panel-plugin |
| 7 | 7 | ||
| 8 | SRC_URI = "http://archive.xfce.org/src/panel-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2" | 8 | SRC_URI = "https://archive.xfce.org/src/panel-plugins/${BPN}/${@'${PV}'[0:3]}/${BPN}-${PV}.tar.bz2" |
| 9 | SRC_URI[sha256sum] = "9fac3a3ad52e18584bfb127cd1721d56de1004b9fdd140915fded89704ccb44e" | 9 | SRC_URI[sha256sum] = "9fac3a3ad52e18584bfb127cd1721d56de1004b9fdd140915fded89704ccb44e" |
diff --git a/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.18.0.bb b/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.18.0.bb index 6ca18b8b33..ef2107ce14 100644 --- a/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.18.0.bb +++ b/meta-xfce/recipes-xfce/xfce4-dev-tools/xfce4-dev-tools_4.18.0.bb | |||
| @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" | |||
| 7 | DEPENDS = "glib-2.0" | 7 | DEPENDS = "glib-2.0" |
| 8 | DEPENDS:append:class-target = " ${BPN}-native" | 8 | DEPENDS:append:class-target = " ${BPN}-native" |
| 9 | 9 | ||
| 10 | SRC_URI = "http://archive.xfce.org/src/xfce/${BPN}/${@'${PV}'[0:4]}/${BPN}-${PV}.tar.bz2 \ | 10 | SRC_URI = "https://archive.xfce.org/src/xfce/${BPN}/${@'${PV}'[0:4]}/${BPN}-${PV}.tar.bz2 \ |
| 11 | file://0001-m4macros-Check-for-a-function-provided-by-libX11-in-.patch \ | 11 | file://0001-m4macros-Check-for-a-function-provided-by-libX11-in-.patch \ |
| 12 | " | 12 | " |
| 13 | SRC_URI:append:class-target = " file://0001-Run-native-xdt-csource-on-tests.patch" | 13 | SRC_URI:append:class-target = " file://0001-Run-native-xdt-csource-on-tests.patch" |
