From: Martin Jansa <martin.jansa@gmail.com>
To: Jens Rehsack <rehsack@gmail.com>
Cc: poky@yoctoproject.org
Subject: Re: [PATCH 9/9] Update libusb1 from 1.0.19 to 1.0.20
Date: Thu, 1 Oct 2015 20:18:28 +0200 [thread overview]
Message-ID: <20151001181828.GG2403@jama> (raw)
In-Reply-To: <9A2A9F0F-9060-44E4-A59D-3749BF52C6A5@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 4951 bytes --]
On Thu, Oct 01, 2015 at 08:07:40PM +0200, Jens Rehsack wrote:
>
> 2015-09-13: v1.0.20
> * Add Haiku support
> * Fix multiple memory and resource leaks (#16, #52, #76, #81)
> * Fix possible deadlock when executing transfer callback
> * New libusb_free_pollfds() API
> * Darwin: Fix devices not being detected on OS X 10.8 (#48)
> * Linux: Allow larger isochronous transfer submission (#23)
> * Windows: Fix broken builds Cygwin/MinGW builds and compiler warnings
> * Windows: Fix broken bus number lookup
> * Windows: Improve submission of control requests for composite devices
> * Examples: Add two-stage load support to fxload (#12)
> * Correctly report cancellations due to timeouts
> * Improve efficiency of event handling
> * Improve speed of transfer submission in multi-threaded environments
> * Various other bug fixes and improvements
> The (#xx) numbers are libusb issue numbers, see ie:
> https://github.com/libusb/libusb/issues/16
This does apply for all 9 commits you sent
1) commit summary should start with changed component (usually recipe
name), see
http://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
2) commits changing oe-core should go to
openembedded-core@lists.openembedded.org
commits changing bitbake should go to
bitbake-devel@lists.openembedded.org
not to poky.
3) you should use -M in git send-email or git format-patch so that
changes like this last one are easier to review.
Regards,
>
> Signed-off-by: Jens Rehsack <sno@netbsd.org>
> ---
> meta/recipes-support/libusb/libusb1_1.0.19.bb | 34 ---------------------------
> meta/recipes-support/libusb/libusb1_1.0.20.bb | 34 +++++++++++++++++++++++++++
> 2 files changed, 34 insertions(+), 34 deletions(-)
> delete mode 100644 meta/recipes-support/libusb/libusb1_1.0.19.bb
> create mode 100644 meta/recipes-support/libusb/libusb1_1.0.20.bb
>
> diff --git a/meta/recipes-support/libusb/libusb1_1.0.19.bb b/meta/recipes-support/libusb/libusb1_1.0.19.bb
> deleted file mode 100644
> index a20e1fc..0000000
> --- a/meta/recipes-support/libusb/libusb1_1.0.19.bb
> +++ /dev/null
> @@ -1,34 +0,0 @@
> -SUMMARY = "Userspace library to access USB (version 1.0)"
> -HOMEPAGE = "http://libusb.sf.net"
> -BUGTRACKER = "http://www.libusb.org/report"
> -SECTION = "libs"
> -
> -LICENSE = "LGPLv2.1+"
> -LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
> -
> -BBCLASSEXTEND = "native nativesdk"
> -
> -SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.bz2 \
> - "
> -
> -SRC_URI[md5sum] = "f9e2bb5879968467e5ca756cb4e1fa7e"
> -SRC_URI[sha256sum] = "6c502c816002f90d4f76050a6429c3a7e0d84204222cbff2dce95dd773ba6840"
> -
> -S = "${WORKDIR}/libusb-${PV}"
> -
> -inherit autotools pkgconfig
> -
> -# Don't configure udev by default since it will cause a circular
> -# dependecy with udev package, which depends on libusb
> -EXTRA_OECONF = "--libdir=${base_libdir} --disable-udev"
> -
> -do_install_append() {
> - install -d ${D}${libdir}
> - if [ ! ${D}${libdir} -ef ${D}${base_libdir} ]; then
> - mv ${D}${base_libdir}/pkgconfig ${D}${libdir}
> - fi
> -}
> -
> -FILES_${PN} += "${base_libdir}/*.so.*"
> -
> -FILES_${PN}-dev += "${base_libdir}/*.so ${base_libdir}/*.la"
> diff --git a/meta/recipes-support/libusb/libusb1_1.0.20.bb b/meta/recipes-support/libusb/libusb1_1.0.20.bb
> new file mode 100644
> index 0000000..21b8b45
> --- /dev/null
> +++ b/meta/recipes-support/libusb/libusb1_1.0.20.bb
> @@ -0,0 +1,34 @@
> +SUMMARY = "Userspace library to access USB (version 1.0)"
> +HOMEPAGE = "http://libusb.sf.net"
> +BUGTRACKER = "http://www.libusb.org/report"
> +SECTION = "libs"
> +
> +LICENSE = "LGPLv2.1+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
> +
> +BBCLASSEXTEND = "native nativesdk"
> +
> +SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.bz2 \
> + "
> +
> +SRC_URI[md5sum] = "1d4eb194eaaa2bcfbba28102768c7dbf"
> +SRC_URI[sha256sum] = "cb057190ba0a961768224e4dc6883104c6f945b2bf2ef90d7da39e7c1834f7ff"
> +
> +S = "${WORKDIR}/libusb-${PV}"
> +
> +inherit autotools pkgconfig
> +
> +# Don't configure udev by default since it will cause a circular
> +# dependecy with udev package, which depends on libusb
> +EXTRA_OECONF = "--libdir=${base_libdir} --disable-udev"
> +
> +do_install_append() {
> + install -d ${D}${libdir}
> + if [ ! ${D}${libdir} -ef ${D}${base_libdir} ]; then
> + mv ${D}${base_libdir}/pkgconfig ${D}${libdir}
> + fi
> +}
> +
> +FILES_${PN} += "${base_libdir}/*.so.*"
> +
> +FILES_${PN}-dev += "${base_libdir}/*.so ${base_libdir}/*.la"
> --
> 1.9.1
>
> --
> Jens Rehsack - rehsack@gmail.com
>
> --
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]
prev parent reply other threads:[~2015-10-01 18:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-01 18:07 [PATCH 9/9] Update libusb1 from 1.0.19 to 1.0.20 Jens Rehsack
2015-10-01 18:18 ` Martin Jansa [this message]
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=20151001181828.GG2403@jama \
--to=martin.jansa@gmail.com \
--cc=poky@yoctoproject.org \
--cc=rehsack@gmail.com \
/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.