[OE-core] [PATCH] apt-package: Include maintenance scripts

Andreas Oberritter obi at opendreambox.org
Sat Nov 19 14:06:14 UTC 2016


On 17.11.2016 23:16, Aníbal Limón wrote:
> Your patch looks good, only missing one thing you need to conditional
> those lines to only work when systemd is enabled in DISTRO_FEATURES, see
> example:
> 
> http://git.yoctoproject.org/cgit/cgit.cgi/poky/tree/meta/recipes-support/consolekit/consolekit_0.4.6.bb#n26

No, because systemd.bbclass, which consolekit doesn't inherit, deletes
all files in systemd_unitdir if systemd is not in distro features.

> On 11/16/2016 10:33 AM, Linus Wallgren wrote:
>> Apt can run multiple tasks daily, such as for example clean, update,
>> autoclean, unattended-upgrades etc.
>>
>> [YOCTO #10669]
>>
>> Signed-off-by: Linus Wallgren <linus.wallgren at scypho.com>
>> ---
>>  meta/recipes-devtools/apt/apt-package.inc | 15 ++++++++++++++-
>>  1 file changed, 14 insertions(+), 1 deletion(-)
>>
>> diff --git a/meta/recipes-devtools/apt/apt-package.inc b/meta/recipes-devtools/apt/apt-package.inc
>> index a553aa2..38cd558 100644
>> --- a/meta/recipes-devtools/apt/apt-package.inc
>> +++ b/meta/recipes-devtools/apt/apt-package.inc
>> @@ -32,13 +32,19 @@ FILES_${PN} = "${bindir}/apt-cdrom ${bindir}/apt-get \
>>  	       ${bindir}/apt-config ${bindir}/apt-cache \
>>  	       ${libdir}/apt ${libdir}/libapt*.so.* \
>>  	       ${localstatedir} ${sysconfdir} \
>> -	       ${libdir}/dpkg"
>> +	       ${libdir}/dpkg \
>> +	       ${systemd_unitdir}/system \
>> +           "
>>  FILES_${PN}-utils = "${bindir}/apt-sortpkgs ${bindir}/apt-extracttemplates"
>>  FILES_${PN}-doc = "${@get_files_apt_doc(d, bb, d.getVar('apt-manpages', True))} \
>>  		   ${docdir}/apt"
>>  FILES_${PN}-utils-doc = "${@get_files_apt_doc(d, bb, d.getVar('apt-utils-manpages', True))}"
>>  FILES_${PN}-dev = "${libdir}/libapt*.so ${includedir}"
>>  
>> +inherit systemd
>> +
>> +SYSTEMD_SERVICE_${PN} = "apt-daily.timer"
>> +
>>  do_install () {
>>  	set -x
>>  	install -d ${D}${bindir}
>> @@ -75,4 +81,11 @@ do_install () {
>>  
>>  	install -d ${D}${includedir}/apt-pkg/
>>  	install -m 0644 include/apt-pkg/*.h ${D}${includedir}/apt-pkg/
>> +
>> +    install -d ${D}${systemd_unitdir}/system/
>> +    install -m 0644 ${S}/debian/apt.systemd.daily ${D}/usr/lib/apt/
>> +    install -m 0644 ${S}/debian/apt-daily.service ${D}${systemd_unitdir}/system/
>> +    install -m 0644 ${S}/debian/apt-daily.timer ${D}${systemd_unitdir}/system/
>> +    install -d ${D}${sysconfdir}/cron.daily/
>> +    install -m 0755 ${S}/debian/apt.apt-compat.cron.daily ${D}${sysconfdir}/cron.daily/
>>  }
>>

Please consider using tabs for consistency with the rest of the recipe.

Regards,
Andreas




More information about the Openembedded-core mailing list