mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00

Some of them were introduced by mass-removal of S = WORKDIR/git assignments; rather than try to fix up (or redo) just these, I've run this sed command over the whole tree: sed -i -z -E 's/([ \t\f\v\r]*\n){3,}/\n\n/g' `find . -name *.bb -o -name *.inc` The rationale is that more than one empty line is wasting vertical screen space, and does nothing for readability. (From OE-Core rev: cedc4ff7c9bcfb22a20e43e47f9759f4007a4f1a) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
1.6 KiB
BlitzBasic
41 lines
1.6 KiB
BlitzBasic
SUMMARY = "helper tools for all init systems"
|
|
DESCRIPTION = "This package contains helper tools that are necessary for switching between \
|
|
the various init systems that Debian contains (e. g. sysvinit or \
|
|
systemd). An example is deb-systemd-helper, a script that enables systemd unit \
|
|
files without depending on a running systemd. \
|
|
\
|
|
It also includes the \"service\", \"invoke-rc.d\", and \"update-rc.d\" scripts which \
|
|
provide an abstraction for enabling, disabling, starting, and stopping \
|
|
services for all supported Debian init systems as specified by the policy. \
|
|
\
|
|
While this package is maintained by pkg-systemd-maintainers, it is NOT \
|
|
specific to systemd at all. Maintainers of other init systems are welcome to \
|
|
include their helpers in this package."
|
|
HOMEPAGE = "https://salsa.debian.org/debian/init-system-helpers"
|
|
SECTION = "base"
|
|
LICENSE = "BSD-3-Clause & GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://debian/copyright;md5=c4ec20aa158fa9de26ee1accf78dcaae"
|
|
|
|
SRCREV = "78486a4a2a305170b66ce4d907bedadbaed10daf"
|
|
SRC_URI = "git://salsa.debian.org/debian/init-system-helpers.git;protocol=https;branch=master"
|
|
UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))(?!_exp)"
|
|
|
|
do_configure[noexec] = "1"
|
|
do_compile[noexec] = "1"
|
|
|
|
do_install() {
|
|
install -d -m 0755 ${D}${sbindir}
|
|
install -m 0755 ${S}/script/invoke-rc.d ${D}${sbindir}
|
|
install -m 0755 ${S}/script/service ${D}${sbindir}
|
|
}
|
|
|
|
PACKAGES += "${PN}-invoke-rc.d ${PN}-service"
|
|
|
|
FILES:${PN} = ""
|
|
FILES:${PN}-invoke-rc.d = "${sbindir}/invoke-rc.d"
|
|
FILES:${PN}-service = "${sbindir}/service"
|
|
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
|
|
RRECOMMENDS:${PN} += "${PN}-invoke-rc.d ${PN}-service"
|