summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex@linutronix.de>2024-08-22 11:34:51 +0200
committerSteve Sakoman <steve@sakoman.com>2024-10-18 06:04:40 -0700
commit597c0519234be91786d57e579470bd3bbefe1cdb (patch)
tree4df2a5a86455c7ea4ecdca5bf610551309eb1b35
parentd6951e3ce3ba1af795e6b6e8de1d92906195d58d (diff)
downloadpoky-597c0519234be91786d57e579470bd3bbefe1cdb.tar.gz
sysvinit: take release tarballs from github
Upstream no longer publishes them on savannah, e.g. release announcement for 3.10: https://lists.gnu.org/archive/html/sysvinit-devel/2024-07/msg00016.html There's been several new versions since: https://github.com/slicer69/sysvinit/releases (From OE-Core rev: e39cad8d845ee17517e69c2935567a9316ab8d22) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 6cb71eaf3d225de14e62cfc1b76dc8094f8f4aed) Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/recipes-core/sysvinit/sysvinit_3.04.bb5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-core/sysvinit/sysvinit_3.04.bb b/meta/recipes-core/sysvinit/sysvinit_3.04.bb
index 6a612468f3..1dd5f575d2 100644
--- a/meta/recipes-core/sysvinit/sysvinit_3.04.bb
+++ b/meta/recipes-core/sysvinit/sysvinit_3.04.bb
@@ -9,7 +9,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \
9 9
10RDEPENDS:${PN} = "${PN}-inittab" 10RDEPENDS:${PN} = "${PN}-inittab"
11 11
12SRC_URI = "${SAVANNAH_GNU_MIRROR}/sysvinit/sysvinit-${PV}.tar.xz \ 12GITHUB_BASE_URI = "https://github.com/slicer69/${BPN}/releases/"
13SRC_URI = "${GITHUB_BASE_URI}/download/${PV}/${BP}.tar.xz \
13 file://install.patch \ 14 file://install.patch \
14 file://crypt-lib.patch \ 15 file://crypt-lib.patch \
15 file://pidof-add-m-option.patch \ 16 file://pidof-add-m-option.patch \
@@ -27,7 +28,7 @@ SRC_URI[sha256sum] = "2a621fe6e4528bc91308b74867ddaaebbdf7753f02395c0c5bae817bd2
27 28
28S = "${WORKDIR}/sysvinit-${PV}" 29S = "${WORKDIR}/sysvinit-${PV}"
29 30
30inherit update-alternatives features_check 31inherit update-alternatives features_check github-releases
31DEPENDS:append = " update-rc.d-native base-passwd virtual/crypt" 32DEPENDS:append = " update-rc.d-native base-passwd virtual/crypt"
32do_package_setscene[depends] = "${MLPREFIX}base-passwd:do_populate_sysroot" 33do_package_setscene[depends] = "${MLPREFIX}base-passwd:do_populate_sysroot"
33 34