From: Martin Jansa <martin.jansa@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [meta-oe][PATCH] libftdi: update to 1.1
Date: Sat, 6 Dec 2014 07:51:16 +0100 [thread overview]
Message-ID: <20141206065116.GA2448@jama> (raw)
In-Reply-To: <CAENGNhd1fzx8SOchN1oYi5VJYyAujDwwNmHx81XpdOu66GGXxA@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 5166 bytes --]
On Fri, Dec 05, 2014 at 11:15:56PM -0200, Raphael Philipe wrote:
> Hi Martin,
> do you mean to use the -M40 parameter for git format-patch?
>
> I did that, but the produced patch was exacly the same as without it.
It was supposed to better detect renamed file and sent easier to review
patch, you can experiment a bit more with the number, but don't worry
too much.
> Please noticed that I deleted libftdi_0.19.bb and created libftdi_1.1.bb.
Yes that's correct and why I was expecting git to show smaller diff.
> Can you help me?
>
>
>
> On Fri, Dec 5, 2014 at 8:55 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> > On Fri, Dec 05, 2014 at 03:50:29PM -0200, Raphael Silva wrote:
> >> Previous version was 0.19, but it had a failing recipe due to
> >> the fact that libusb was not detect during do_configure.
> >> This problem does not happen in version 1.1.
> >
> > Please resend with -M40
> >
> >> Signed-off-by: Mario Goulart <mario.goulart@gmail.com>
> >> Signed-off-by: Raphael Silva <rapphil@gmail.com>
> >> ---
> >> meta-oe/recipes-support/libftdi/libftdi_0.19.bb | 31 -------------------------
> >> meta-oe/recipes-support/libftdi/libftdi_1.1.bb | 29 +++++++++++++++++++++++
> >> 2 files changed, 29 insertions(+), 31 deletions(-)
> >> delete mode 100644 meta-oe/recipes-support/libftdi/libftdi_0.19.bb
> >> create mode 100644 meta-oe/recipes-support/libftdi/libftdi_1.1.bb
> >>
> >> diff --git a/meta-oe/recipes-support/libftdi/libftdi_0.19.bb b/meta-oe/recipes-support/libftdi/libftdi_0.19.bb
> >> deleted file mode 100644
> >> index 773b791..0000000
> >> --- a/meta-oe/recipes-support/libftdi/libftdi_0.19.bb
> >> +++ /dev/null
> >> @@ -1,31 +0,0 @@
> >> -DESCRIPTION = "libftdi is a library to talk to FTDI chips.\
> >> -FT232BM/245BM, FT2232C/D and FT232/245R using libusb,\
> >> -including the popular bitbang mode."
> >> -HOMEPAGE = "http://www.intra2net.com/en/developer/libftdi/"
> >> -SECTION = "libs"
> >> -
> >> -PR = "r1"
> >> -
> >> -LICENSE = "LGPLv2.1 GPLv2"
> >> -LIC_FILES_CHKSUM= "file://COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe \
> >> - file://COPYING.LIB;md5=db979804f025cf55aabec7129cb671ed \
> >> -"
> >> -
> >> -PNBLACKLIST[libftdi] = "BROKEN: needs to be updated to detect libusb with pkg-config instead of libusb-config"
> >> -
> >> -DEPENDS = "virtual/libusb0"
> >> -DEPENDS_virtclass-native = "virtual/libusb0-native"
> >> -
> >> -SRC_URI = "http://www.intra2net.com/en/developer/libftdi/download/libftdi-${PV}.tar.gz \
> >> - file://libtool-m4.patch \
> >> -"
> >> -SRC_URI[md5sum] = "e6e25f33b4327b1b7aa1156947da45f3"
> >> -SRC_URI[sha256sum] = "567c9d2c42d92fc401c5aba2deed45ffb2433990984e816bcdf31e441aef06be"
> >> -
> >> -PACKAGECONFIG ??= ""
> >> -PACKAGECONFIG[cpp-wrapper] = "--enable-libftdipp,--disable-libftdipp,boost"
> >> -
> >> -inherit autotools binconfig pkgconfig
> >> -
> >> -BBCLASSEXTEND = "native"
> >> -
> >> diff --git a/meta-oe/recipes-support/libftdi/libftdi_1.1.bb b/meta-oe/recipes-support/libftdi/libftdi_1.1.bb
> >> new file mode 100644
> >> index 0000000..641e5a7
> >> --- /dev/null
> >> +++ b/meta-oe/recipes-support/libftdi/libftdi_1.1.bb
> >> @@ -0,0 +1,29 @@
> >> +DESCRIPTION = "libftdi is a library to talk to FTDI chips.\
> >> +FT232BM/245BM, FT2232C/D and FT232/245R using libusb,\
> >> +including the popular bitbang mode."
> >> +HOMEPAGE = "http://www.intra2net.com/en/developer/libftdi/"
> >> +SECTION = "libs"
> >> +
> >> +LICENSE = "LGPLv2.1 GPLv2"
> >> +LIC_FILES_CHKSUM= "\
> >> + file://COPYING.GPL;md5=751419260aa954499f7abaabaa882bbe \
> >> + file://COPYING.LIB;md5=db979804f025cf55aabec7129cb671ed \
> >> +"
> >> +
> >> +DEPENDS = "libusb1"
> >> +
> >> +SRC_URI = "http://www.intra2net.com/en/developer/${BPN}/download/${BPN}1-${PV}.tar.bz2"
> >> +
> >> +SRC_URI[md5sum] = "b79a6356978aa8e69f8eecc3a720ff79"
> >> +SRC_URI[sha256sum] = "c0b1af1a13e2c6682a1d8041e5b164a1e0d90267cd378bb51e059bd62f821e21"
> >> +
> >> +S = "${WORKDIR}/${BPN}1-${PV}"
> >> +
> >> +PACKAGECONFIG ??= ""
> >> +PACKAGECONFIG[cpp-wrapper] = "-DFTDI_BUILD_CPP=on,-DFTDI_BUILD_CPP=off,boost"
> >> +
> >> +inherit cmake binconfig pkgconfig
> >> +
> >> +FILES_${PN}-dev += "${libdir}/cmake"
> >> +
> >> +BBCLASSEXTEND = "native"
> >> --
> >> 2.2.0
> >>
> >> --
> >> _______________________________________________
> >> Openembedded-devel mailing list
> >> Openembedded-devel@lists.openembedded.org
> >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> > --
> > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
> >
> > --
> > _______________________________________________
> > 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
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]
next prev parent reply other threads:[~2014-12-06 6:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-05 17:50 [meta-oe][PATCH] libftdi: update to 1.1 Raphael Silva
2014-12-05 22:55 ` Martin Jansa
2014-12-06 1:15 ` Raphael Philipe
2014-12-06 6:51 ` Martin Jansa [this message]
2014-12-07 19:20 ` Otavio Salvador
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20141206065116.GA2448@jama \
--to=martin.jansa@gmail.com \
--cc=openembedded-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.