Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-oe] [PATCH] dos2unix: add recipe
@ 2017-06-11 12:54 liu.ming50
  2017-06-12 18:53 ` Martin Jansa
  0 siblings, 1 reply; 3+ messages in thread
From: liu.ming50 @ 2017-06-11 12:54 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Ming Liu

From: Ming Liu <peter.x.liu@external.atlascopco.com>

The Dos2unix package includes utilities dos2unix and unix2dos to
convert plain text files in DOS or Mac format to Unix format and
vice versa.

Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
---
 meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb | 34 ++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb

diff --git a/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb b/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb
new file mode 100644
index 0000000..f3d5173
--- /dev/null
+++ b/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb
@@ -0,0 +1,34 @@
+SUMMARY = "Convert text file line endings between CRLF and LF"
+DESCRIPTION = "The Dos2unix package includes utilities dos2unix and \
+unix2dos to convert plain text files in DOS or Mac format to Unix \
+format and vice versa."
+HOMEPAGE = "http://waterlan.home.xs4all.nl/dos2unix.html"
+SECTION = "support"
+
+LICENSE = "BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://COPYING.txt;md5=1b78fca784db24f4a40e30b300787f3f"
+
+SRC_URI = "git://git.code.sf.net/p/dos2unix/dos2unix"
+
+# Release 7.3.4
+SRCREV = "8381ba4e1c4cd5ce98ebd9c24726d51cb203cde0"
+
+S = "${WORKDIR}/git/dos2unix"
+
+inherit gettext perlnative
+
+# The dos2unix NLS relies on po4a-native, while po4a recipe is
+# provided by meta-perl layer, so make it optional here, you
+# need have meta-perl in bblayers.conf before enabling nls in
+# PACKAGECONFIG.
+PACKAGECONFIG ??= ""
+PACKAGECONFIG[nls] = "ENABLE_NLS=1,ENABLE_NLS=,po4a-native"
+
+EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS}"
+EXTRA_OEMAKE_class-native = "ENABLE_NLS="
+
+do_install () {
+    oe_runmake DESTDIR="${D}${base_prefix}" install
+}
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [meta-oe] [PATCH] dos2unix: add recipe
  2017-06-11 12:54 [meta-oe] [PATCH] dos2unix: add recipe liu.ming50
@ 2017-06-12 18:53 ` Martin Jansa
  2017-06-12 19:01   ` Denys Dmytriyenko
  0 siblings, 1 reply; 3+ messages in thread
From: Martin Jansa @ 2017-06-12 18:53 UTC (permalink / raw)
  To: Ming Liu; +Cc: Ming Liu, openembedded-devel

Please pass LDFLAGS to resolve following QA warning:

ERROR: QA Issue: No GNU_HASH in the elf binary:
dos2unix/7.3.4-r0/packages-split/dos2unix/usr/bin/dos2unix'
No GNU_HASH in the elf binary:
'dos2unix/7.3.4-r0/packages-split/dos2unix/usr/bin/unix2dos' [ldflags]

On Sun, Jun 11, 2017 at 2:54 PM, <liu.ming50@gmail.com> wrote:

> From: Ming Liu <peter.x.liu@external.atlascopco.com>
>
> The Dos2unix package includes utilities dos2unix and unix2dos to
> convert plain text files in DOS or Mac format to Unix format and
> vice versa.
>
> Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> ---
>  meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb | 34
> ++++++++++++++++++++++
>  1 file changed, 34 insertions(+)
>  create mode 100644 meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb
>
> diff --git a/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb
> b/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb
> new file mode 100644
> index 0000000..f3d5173
> --- /dev/null
> +++ b/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb
> @@ -0,0 +1,34 @@
> +SUMMARY = "Convert text file line endings between CRLF and LF"
> +DESCRIPTION = "The Dos2unix package includes utilities dos2unix and \
> +unix2dos to convert plain text files in DOS or Mac format to Unix \
> +format and vice versa."
> +HOMEPAGE = "http://waterlan.home.xs4all.nl/dos2unix.html"
> +SECTION = "support"
> +
> +LICENSE = "BSD-2-Clause"
> +LIC_FILES_CHKSUM = "file://COPYING.txt;md5=1b78fca784db24f4a40e30b300787f
> 3f"
> +
> +SRC_URI = "git://git.code.sf.net/p/dos2unix/dos2unix"
> +
> +# Release 7.3.4
> +SRCREV = "8381ba4e1c4cd5ce98ebd9c24726d51cb203cde0"
> +
> +S = "${WORKDIR}/git/dos2unix"
> +
> +inherit gettext perlnative
> +
> +# The dos2unix NLS relies on po4a-native, while po4a recipe is
> +# provided by meta-perl layer, so make it optional here, you
> +# need have meta-perl in bblayers.conf before enabling nls in
> +# PACKAGECONFIG.
> +PACKAGECONFIG ??= ""
> +PACKAGECONFIG[nls] = "ENABLE_NLS=1,ENABLE_NLS=,po4a-native"
> +
> +EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS}"
> +EXTRA_OEMAKE_class-native = "ENABLE_NLS="
> +
> +do_install () {
> +    oe_runmake DESTDIR="${D}${base_prefix}" install
> +}
> +
> +BBCLASSEXTEND = "native nativesdk"
> --
> 2.7.4
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [meta-oe] [PATCH] dos2unix: add recipe
  2017-06-12 18:53 ` Martin Jansa
@ 2017-06-12 19:01   ` Denys Dmytriyenko
  0 siblings, 0 replies; 3+ messages in thread
From: Denys Dmytriyenko @ 2017-06-12 19:01 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Ming Liu, openembedded-devel, Ming Liu

FWIW, Mentor layer has a tofrodos recipe that does the same... Maybe Chris can 
submit that one here? :)

-- 
Denys


On Mon, Jun 12, 2017 at 08:53:55PM +0200, Martin Jansa wrote:
> Please pass LDFLAGS to resolve following QA warning:
> 
> ERROR: QA Issue: No GNU_HASH in the elf binary:
> dos2unix/7.3.4-r0/packages-split/dos2unix/usr/bin/dos2unix'
> No GNU_HASH in the elf binary:
> 'dos2unix/7.3.4-r0/packages-split/dos2unix/usr/bin/unix2dos' [ldflags]
> 
> On Sun, Jun 11, 2017 at 2:54 PM, <liu.ming50@gmail.com> wrote:
> 
> > From: Ming Liu <peter.x.liu@external.atlascopco.com>
> >
> > The Dos2unix package includes utilities dos2unix and unix2dos to
> > convert plain text files in DOS or Mac format to Unix format and
> > vice versa.
> >
> > Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> > ---
> >  meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb | 34
> > ++++++++++++++++++++++
> >  1 file changed, 34 insertions(+)
> >  create mode 100644 meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb
> >
> > diff --git a/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb
> > b/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb
> > new file mode 100644
> > index 0000000..f3d5173
> > --- /dev/null
> > +++ b/meta-oe/recipes-support/dos2unix/dos2unix_7.3.4.bb
> > @@ -0,0 +1,34 @@
> > +SUMMARY = "Convert text file line endings between CRLF and LF"
> > +DESCRIPTION = "The Dos2unix package includes utilities dos2unix and \
> > +unix2dos to convert plain text files in DOS or Mac format to Unix \
> > +format and vice versa."
> > +HOMEPAGE = "http://waterlan.home.xs4all.nl/dos2unix.html"
> > +SECTION = "support"
> > +
> > +LICENSE = "BSD-2-Clause"
> > +LIC_FILES_CHKSUM = "file://COPYING.txt;md5=1b78fca784db24f4a40e30b300787f
> > 3f"
> > +
> > +SRC_URI = "git://git.code.sf.net/p/dos2unix/dos2unix"
> > +
> > +# Release 7.3.4
> > +SRCREV = "8381ba4e1c4cd5ce98ebd9c24726d51cb203cde0"
> > +
> > +S = "${WORKDIR}/git/dos2unix"
> > +
> > +inherit gettext perlnative
> > +
> > +# The dos2unix NLS relies on po4a-native, while po4a recipe is
> > +# provided by meta-perl layer, so make it optional here, you
> > +# need have meta-perl in bblayers.conf before enabling nls in
> > +# PACKAGECONFIG.
> > +PACKAGECONFIG ??= ""
> > +PACKAGECONFIG[nls] = "ENABLE_NLS=1,ENABLE_NLS=,po4a-native"
> > +
> > +EXTRA_OEMAKE = "${PACKAGECONFIG_CONFARGS}"
> > +EXTRA_OEMAKE_class-native = "ENABLE_NLS="
> > +
> > +do_install () {
> > +    oe_runmake DESTDIR="${D}${base_prefix}" install
> > +}
> > +
> > +BBCLASSEXTEND = "native nativesdk"
> > --
> > 2.7.4
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-06-12 19:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-11 12:54 [meta-oe] [PATCH] dos2unix: add recipe liu.ming50
2017-06-12 18:53 ` Martin Jansa
2017-06-12 19:01   ` Denys Dmytriyenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox