From 25eab2bf01764f6dc033f5a0273f92460dcef1dc Mon Sep 17 00:00:00 2001 From: Gyorgy Sarvari Date: Sat, 31 Jan 2026 22:56:34 +0100 Subject: [PATCH] mime-support: drop recipe Debian has split this package into two sepatare packages: media-types and mailcap. This package hasn't been updated since 2020 (but the other two packages are regularly updated). Beside this the SRC_URI has been inaccessible since a while also. Drop this recipe (and substitute it with the up to date packages in followup patches). Signed-off-by: Gyorgy Sarvari Signed-off-by: Khem Raj --- .../mime-support/mime-support_3.62.bb | 65 ------------------- 1 file changed, 65 deletions(-) delete mode 100644 meta-oe/recipes-support/mime-support/mime-support_3.62.bb diff --git a/meta-oe/recipes-support/mime-support/mime-support_3.62.bb b/meta-oe/recipes-support/mime-support/mime-support_3.62.bb deleted file mode 100644 index 1c0aec13e3..0000000000 --- a/meta-oe/recipes-support/mime-support/mime-support_3.62.bb +++ /dev/null @@ -1,65 +0,0 @@ -SECTION = "base" -SUMMARY = "MIME files 'mime.types' & 'mailcap', and support programs" -LICENSE = "PD & Bellcore" -LICENSE:${PN} = "PD" -# mailcap.man's license is Bellcore -LICENSE:${PN}-doc = "PD & Bellcore" -LIC_FILES_CHKSUM = "file://debian/copyright;md5=53c851e31d27c3ea8a6217073a5ff01c" - -DEPENDS = "file" -RDEPENDS:${PN} = "perl" -RRECOMMENDS:${PN} = "file" - -SRC_URI = "${DEBIAN_MIRROR}/main/m/mime-support/mime-support_${PV}.tar.gz" -SRC_URI[sha256sum] = "54e0a03e0cd63c7c9fe68a18ead0a2143fd3c327604215f989d85484d0409f4a" -S = "${UNPACKDIR}/${BPN}" - -inherit update-alternatives - -FILES:${PN} += " ${libdir}/mime" - -docdir:append = "/${BPN}" - -do_install () { - install -d ${D}${sysconfdir} - install -d ${D}${libdir}/mime/packages - install -d ${D}${docdir} - install -d ${D}${sbindir} - install -d ${D}${bindir} - install -d ${D}${mandir}/man1 - install -d ${D}${mandir}/man5 - install -d ${D}${mandir}/man8 - install -m 644 mime.types ${D}${sysconfdir}/ - install -m 644 mailcap ${D}${libdir}/mime/ - install -m 644 mailcap.order ${D}${sysconfdir}/ - install -m 644 mailcap.man ${D}${mandir}/man5/mailcap.5 - install -m 644 mailcap.order.man ${D}${mandir}/man5/mailcap.order.5 -# install -m 755 install-mime ${D}${sbindir}/ -# install -m 644 install-mime.man ${D}${mandir}/man8/install-mime.8 - install -m 755 update-mime ${D}${sbindir}/ - install -m 644 update-mime.man ${D}${mandir}/man8/update-mime.8 - install -m 755 run-mailcap ${D}${bindir}/ - install -m 644 run-mailcap.man ${D}${mandir}/man1/run-mailcap.1 -# install -m 644 rfcs/* ${D}${docdir}/ - install -m 644 debian/changelog ${D}${docdir}/changelog.Debian - install -m 644 debian/copyright ${D}${docdir}/copyright - install -m 755 debian-view ${D}${libdir}/mime/ - install -m 755 playaudio ${D}${libdir}/mime/ - install -m 755 playdsp ${D}${libdir}/mime/ - install -m 644 mailcap.entries ${D}${libdir}/mime/packages/mime-support - cd ${D}${mandir}; gzip -9fv */* - cd ${D}${docdir}; gzip -9v * - cd ${D}${docdir}; gunzip copyright.gz - cd ${D}${bindir}; ln -s run-mailcap see - cd ${D}${bindir}; ln -s run-mailcap edit - cd ${D}${bindir}; ln -s run-mailcap compose - cd ${D}${bindir}; ln -s run-mailcap print - cd ${D}${mandir}/man1; ln -s run-mailcap.1.gz see.1.gz - cd ${D}${mandir}/man1; ln -s run-mailcap.1.gz edit.1.gz - cd ${D}${mandir}/man1; ln -s run-mailcap.1.gz compose.1.gz - cd ${D}${mandir}/man1; ln -s run-mailcap.1.gz print.1.gz -} - -ALTERNATIVE_PRIORITY = "90" -ALTERNATIVE:${PN} = "mime.types" -ALTERNATIVE_LINK_NAME[mime.types] = "${sysconfdir}/mime.types"