From 40d6a19aa300eb114ea4aa2de3c27a3fc22706f7 Mon Sep 17 00:00:00 2001 From: Kai Kang Date: Mon, 21 Dec 2015 16:24:13 +0800 Subject: mime-construct: move from meta-networking to meta-perl mime-construct only provides a perl script and depends on many perl modules that cause layer meta-networking depends on meta-perl. Move mime-construct from meta-networking to meta-perl to avoid the layer dependency. Signed-off-by: Kai Kang Signed-off-by: Martin Jansa --- .../fix-mime-construct-help-return-value.patch | 39 ---------------------- .../mime-construct/mime-construct_1.11.bb | 22 ------------ .../fix-mime-construct-help-return-value.patch | 39 ++++++++++++++++++++++ .../mime-construct/mime-construct_1.11.bb | 22 ++++++++++++ 4 files changed, 61 insertions(+), 61 deletions(-) delete mode 100644 meta-networking/recipes-extended/mime-construct/files/fix-mime-construct-help-return-value.patch delete mode 100644 meta-networking/recipes-extended/mime-construct/mime-construct_1.11.bb create mode 100644 meta-perl/recipes-extended/mime-construct/files/fix-mime-construct-help-return-value.patch create mode 100644 meta-perl/recipes-extended/mime-construct/mime-construct_1.11.bb diff --git a/meta-networking/recipes-extended/mime-construct/files/fix-mime-construct-help-return-value.patch b/meta-networking/recipes-extended/mime-construct/files/fix-mime-construct-help-return-value.patch deleted file mode 100644 index 5e4281d4e3..0000000000 --- a/meta-networking/recipes-extended/mime-construct/files/fix-mime-construct-help-return-value.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 2b9ed06850410d70371b31de5f131e484ba1c851 Mon Sep 17 00:00:00 2001 -From: Lu Chong -Date: Thu, 17 Oct 2013 16:06:04 +0800 -Subject: [PATCH] fix mime-construct --help return value - -Upstream-Status: Pending - -Signed-off-by: Lu Chong - ---- - mime-construct | 5 +++-- - 1 file changed, 3 insertions(+), 2 deletions(-) - -diff --git a/mime-construct b/mime-construct -index cad7d0e..707ed19 100755 ---- a/mime-construct -+++ b/mime-construct -@@ -39,7 +39,7 @@ usage: $Me switch... - - Global settings: - --debug turn debugging on -- --help show this and then die -+ --help show this - --output don\'t mail, output to stdout (loses bcc info) - --subpart generate subpart rather than whole message (turns - on --output, changes other semantics a bit) -@@ -150,7 +150,8 @@ sub xwarn { - - sub usage { - xwarn @_ if @_; -- die $Usage; -+ print $Usage; -+ exit 0; - } - - sub init { --- -1.7.9.5 - diff --git a/meta-networking/recipes-extended/mime-construct/mime-construct_1.11.bb b/meta-networking/recipes-extended/mime-construct/mime-construct_1.11.bb deleted file mode 100644 index 9f1a779820..0000000000 --- a/meta-networking/recipes-extended/mime-construct/mime-construct_1.11.bb +++ /dev/null @@ -1,22 +0,0 @@ -SUMMARY = "Construct and optionally mail MIME messages" -DESCRIPTION = "Constructs and (by default) mails MIME messages. \ - It is entirely driven from the command line, it is \ - designed to be used by other programs, or people who act \ - like programs." -HOMEPAGE = "http://search.cpan.org/~rosch/mime-construct/mime-construct" -SECTION = "mail" -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://debian/copyright;md5=5e2e5da619ac8ef8c84767ccc4656e96" - -SRC_URI = "${CPAN_MIRROR}/authors/id/R/RO/ROSCH/mime-construct-${PV}.tar.gz \ - file://fix-mime-construct-help-return-value.patch \ -" - -SRC_URI[md5sum] = "73834ea780fbea81b89dbd9b2fb54f58" -SRC_URI[sha256sum] = "4cd7bb61b51d41192d1498c1051aa6a4ccd75aeb09b71d2ec706a7084a4a9303" - -inherit cpan - -RDEPENDS_${PN} = "libmime-types-perl libproc-waitstat-perl msmtp \ - perl-module-filehandle perl-module-mime-base64 perl-module-mime-quotedprint perl-module-posix \ -" diff --git a/meta-perl/recipes-extended/mime-construct/files/fix-mime-construct-help-return-value.patch b/meta-perl/recipes-extended/mime-construct/files/fix-mime-construct-help-return-value.patch new file mode 100644 index 0000000000..5e4281d4e3 --- /dev/null +++ b/meta-perl/recipes-extended/mime-construct/files/fix-mime-construct-help-return-value.patch @@ -0,0 +1,39 @@ +From 2b9ed06850410d70371b31de5f131e484ba1c851 Mon Sep 17 00:00:00 2001 +From: Lu Chong +Date: Thu, 17 Oct 2013 16:06:04 +0800 +Subject: [PATCH] fix mime-construct --help return value + +Upstream-Status: Pending + +Signed-off-by: Lu Chong + +--- + mime-construct | 5 +++-- + 1 file changed, 3 insertions(+), 2 deletions(-) + +diff --git a/mime-construct b/mime-construct +index cad7d0e..707ed19 100755 +--- a/mime-construct ++++ b/mime-construct +@@ -39,7 +39,7 @@ usage: $Me switch... + + Global settings: + --debug turn debugging on +- --help show this and then die ++ --help show this + --output don\'t mail, output to stdout (loses bcc info) + --subpart generate subpart rather than whole message (turns + on --output, changes other semantics a bit) +@@ -150,7 +150,8 @@ sub xwarn { + + sub usage { + xwarn @_ if @_; +- die $Usage; ++ print $Usage; ++ exit 0; + } + + sub init { +-- +1.7.9.5 + diff --git a/meta-perl/recipes-extended/mime-construct/mime-construct_1.11.bb b/meta-perl/recipes-extended/mime-construct/mime-construct_1.11.bb new file mode 100644 index 0000000000..9f1a779820 --- /dev/null +++ b/meta-perl/recipes-extended/mime-construct/mime-construct_1.11.bb @@ -0,0 +1,22 @@ +SUMMARY = "Construct and optionally mail MIME messages" +DESCRIPTION = "Constructs and (by default) mails MIME messages. \ + It is entirely driven from the command line, it is \ + designed to be used by other programs, or people who act \ + like programs." +HOMEPAGE = "http://search.cpan.org/~rosch/mime-construct/mime-construct" +SECTION = "mail" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://debian/copyright;md5=5e2e5da619ac8ef8c84767ccc4656e96" + +SRC_URI = "${CPAN_MIRROR}/authors/id/R/RO/ROSCH/mime-construct-${PV}.tar.gz \ + file://fix-mime-construct-help-return-value.patch \ +" + +SRC_URI[md5sum] = "73834ea780fbea81b89dbd9b2fb54f58" +SRC_URI[sha256sum] = "4cd7bb61b51d41192d1498c1051aa6a4ccd75aeb09b71d2ec706a7084a4a9303" + +inherit cpan + +RDEPENDS_${PN} = "libmime-types-perl libproc-waitstat-perl msmtp \ + perl-module-filehandle perl-module-mime-base64 perl-module-mime-quotedprint perl-module-posix \ +" -- cgit v1.2.3-54-g00ecf