From 7f33f59c7ad2184aa66d0b417853a6b33e9bfbb3 Mon Sep 17 00:00:00 2001 From: Robert Yang Date: Wed, 14 Mar 2012 17:55:17 +0800 Subject: upgrade logrotate: update the recipe update the recipe: ogrotate_3.7.9.bb -> logrotate_3.8.1.bb (From OE-Core rev: 9dc1a8c793e1908032be0f0ea3b3f0832b1bf5aa) Signed-off-by: Robert Yang Signed-off-by: Richard Purdie --- meta/recipes-extended/logrotate/logrotate_3.7.9.bb | 31 -------------------- meta/recipes-extended/logrotate/logrotate_3.8.1.bb | 34 ++++++++++++++++++++++ 2 files changed, 34 insertions(+), 31 deletions(-) delete mode 100644 meta/recipes-extended/logrotate/logrotate_3.7.9.bb create mode 100644 meta/recipes-extended/logrotate/logrotate_3.8.1.bb (limited to 'meta/recipes-extended') diff --git a/meta/recipes-extended/logrotate/logrotate_3.7.9.bb b/meta/recipes-extended/logrotate/logrotate_3.7.9.bb deleted file mode 100644 index 40d1a38eab..0000000000 --- a/meta/recipes-extended/logrotate/logrotate_3.7.9.bb +++ /dev/null @@ -1,31 +0,0 @@ -DESCRIPTION = "Rotates, compresses, removes and mails system log files" -SECTION = "console/utils" -HOMEPAGE = "https://fedorahosted.org/releases/l/o/logrotate" -LICENSE = "GPLv2" -PR = "r2" - -DEPENDS="coreutils popt" - -LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" - -SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz \ - file://allow-across-different-filesystems.patch" - -SRC_URI[md5sum] = "eeba9dbca62a9210236f4b83195e4ea5" -SRC_URI[sha256sum] = "080caf904e70e04da16b8dfa95a5a787ec7d722ee1af18ccea437d3ffdd6fec0" - - -EXTRA_OEMAKE = "CC='${CC}'" - -do_install(){ - oe_runmake install DESTDIR=${D} PREFIX=${D} MANDIR=${mandir} -} - -do_install_append(){ - mkdir -p ${D}${sysconfdir}/logrotate.d - mkdir -p ${D}${sysconfdir}/cron.daily - mkdir -p ${D}${localstatedir}/lib - install -p -m 644 examples/logrotate-default ${D}${sysconfdir}/logrotate.conf - install -p -m 755 examples/logrotate.cron ${D}${sysconfdir}/cron.daily/logrotate - touch ${D}${localstatedir}/lib/logrotate.status -} diff --git a/meta/recipes-extended/logrotate/logrotate_3.8.1.bb b/meta/recipes-extended/logrotate/logrotate_3.8.1.bb new file mode 100644 index 0000000000..5a8156be57 --- /dev/null +++ b/meta/recipes-extended/logrotate/logrotate_3.8.1.bb @@ -0,0 +1,34 @@ +DESCRIPTION = "Rotates, compresses, removes and mails system log files" +SECTION = "console/utils" +HOMEPAGE = "https://fedorahosted.org/releases/l/o/logrotate" +LICENSE = "GPLv2" +PR = "r0" + +DEPENDS="coreutils popt" + +LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" + +SRC_URI = "https://fedorahosted.org/releases/l/o/logrotate/logrotate-${PV}.tar.gz \ + file://act-as-mv-when-rotate.patch \ + file://disable-check-different-filesystems.patch \ + file://update-the-manual.patch \ + " + +SRC_URI[md5sum] = "bd2e20d8dc644291b08f9215397d28a5" +SRC_URI[sha256sum] = "c12471e70ae8bc923bd5c4f25e8fd6483b68c6301f3cd79f7cfe37bc5b370169" + + +EXTRA_OEMAKE = "CC='${CC}'" + +do_install(){ + oe_runmake install DESTDIR=${D} PREFIX=${D} MANDIR=${mandir} +} + +do_install_append(){ + mkdir -p ${D}${sysconfdir}/logrotate.d + mkdir -p ${D}${sysconfdir}/cron.daily + mkdir -p ${D}${localstatedir}/lib + install -p -m 644 examples/logrotate-default ${D}${sysconfdir}/logrotate.conf + install -p -m 755 examples/logrotate.cron ${D}${sysconfdir}/cron.daily/logrotate + touch ${D}${localstatedir}/lib/logrotate.status +} -- cgit v1.2.3-54-g00ecf